We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19c70e0 commit 88e0b21Copy full SHA for 88e0b21
src/settings/SettingTab.ts
@@ -46,8 +46,8 @@ export class ChemSettingTab extends PluginSettingTab {
46
});
47
48
const scaleSlider = new SliderComponent(scaleSetting.controlEl)
49
- .setValue(this.plugin.settings.commonOptions.scale ?? 1.0)
50
.setLimits(0.0, 2, 0.01)
+ .setValue(this.plugin.settings.commonOptions.scale ?? 1.0)
51
.setDynamicTooltip()
52
.onChange(async (value) => {
53
this.plugin.settings.smilesDrawerOptions.moleculeOptions.scale =
0 commit comments