Skip to content

Commit 5c38131

Browse files
committed
Update SettingTab.ts
1 parent 3061fa4 commit 5c38131

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/settings/SettingTab.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,13 +134,13 @@ export class ChemSettingTab extends PluginSettingTab {
134134
new Setting(containerEl)
135135
.setName(i18n.t('settings.advanced.core.name'))
136136
.setDesc(i18n.t('settings.advanced.core.description'))
137-
.setDisabled(Platform.isIosApp)
138137
.addDropdown((dropdown) =>
139138
dropdown
140139
.addOptions({
141140
rdkit: 'RDKit.js',
142141
'smiles-drawer': 'Smiles Drawer',
143142
})
143+
.setDisabled(Platform.isIosApp)
144144
.setValue(this.plugin.settings.core ?? false)
145145
.onChange(async (value: 'rdkit' | 'smiles-drawer') => {
146146
this.plugin.settings.core = value;

0 commit comments

Comments
 (0)