From 8e29ade83a6e0ed865f1d2ede88e891bd01d332a Mon Sep 17 00:00:00 2001 From: yakomaxa <47655565+yakomaxa@users.noreply.github.com> Date: Tue, 16 Aug 2022 16:52:34 +0900 Subject: [PATCH] minor change of language name: Rasmol -> RasMol --- src/mol-plugin-ui/controls/parameters.tsx | 4 ++-- src/mol-script/script.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mol-plugin-ui/controls/parameters.tsx b/src/mol-plugin-ui/controls/parameters.tsx index 202353e9e..46d78ae8c 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 bfc55f7f3..ca62dd315 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; -- GitLab