diff --git a/src/mol-plugin-ui/controls/parameters.tsx b/src/mol-plugin-ui/controls/parameters.tsx index 202353e9ece1ae112d905ad4b179996430f6341d..46d78ae8c770eae564a73fae279c7260c2827e2b 100644 --- a/src/mol-plugin-ui/controls/parameters.tsx +++ b/src/mol-plugin-ui/controls/parameters.tsx @@ -1496,9 +1496,9 @@ export class ScriptControl extends React.PureComponent<ParamProps<PD.Script>> { return <> {select} {this.props.value.language !== 'mol-script' && <div className='msp-help-text' style={{ padding: '10px' }}> - <Icon svg={WarningSvg} /> Support for PyMOL, VMD, Jmol, and Rasmol selections is an experimental feature and may not always work as intended. + <Icon svg={WarningSvg} /> Support for PyMOL, VMD, Jmol, and RasMol selections is an experimental feature and may not always work as intended. </div>} {text} </>; } -} \ No newline at end of file +} diff --git a/src/mol-script/script.ts b/src/mol-script/script.ts index bfc55f7f3f40a7959edccf677d4a92db558b441b..ca62dd315c0a9990d782ba1905309adbcd687d45 100644 --- a/src/mol-script/script.ts +++ b/src/mol-script/script.ts @@ -27,7 +27,7 @@ namespace Script { 'pymol': 'PyMOL', 'vmd': 'VMD', 'jmol': 'Jmol', - 'rasmol': 'Rasmol' + 'rasmol': 'RasMol' }; export type Language = keyof typeof Info;