Переглянути джерело

minor change of language name: Rasmol -> RasMol

yakomaxa 2 роки тому
батько
коміт
8e29ade83a

+ 2 - 2
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}
         </>;
     }
-}
+}

+ 1 - 1
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;