Skip to content

Commit

Permalink
Added option for 1% hotkey increments
Browse files Browse the repository at this point in the history
  • Loading branch information
xanderfrangos committed Nov 18, 2021
1 parent 9692b9f commit 10aed3a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/SettingsWindow.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -1033,6 +1033,7 @@ export default class SettingsWindow extends PureComponent {
<label>{T.t("SETTINGS_HOTKEYS_LEVEL_TITLE")}</label>
<p>{T.t("SETTINGS_HOTKEYS_LEVEL_DESC")}</p>
<select value={this.state.hotkeyPercent} onChange={(e) => { this.setState({ hotkeyPercent: e.target.value * 1 }); window.sendSettings({ hotkeyPercent: e.target.value * 1 }) }}>
<option value="1">1%</option>
<option value="5">5%</option>
<option value="10">10%</option>
<option value="15">15%</option>
Expand Down

0 comments on commit 10aed3a

Please sign in to comment.