Skip to content

Commit 10aed3a

Browse files
committed
Added option for 1% hotkey increments
#250
1 parent 9692b9f commit 10aed3a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/components/SettingsWindow.jsx

+1
Original file line numberDiff line numberDiff line change
@@ -1033,6 +1033,7 @@ export default class SettingsWindow extends PureComponent {
10331033
<label>{T.t("SETTINGS_HOTKEYS_LEVEL_TITLE")}</label>
10341034
<p>{T.t("SETTINGS_HOTKEYS_LEVEL_DESC")}</p>
10351035
<select value={this.state.hotkeyPercent} onChange={(e) => { this.setState({ hotkeyPercent: e.target.value * 1 }); window.sendSettings({ hotkeyPercent: e.target.value * 1 }) }}>
1036+
<option value="1">1%</option>
10361037
<option value="5">5%</option>
10371038
<option value="10">10%</option>
10381039
<option value="15">15%</option>

0 commit comments

Comments
 (0)