We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f98789 commit 9f32c4dCopy full SHA for 9f32c4d
1 file changed
fe/src/search-toolbar.js
@@ -411,7 +411,7 @@ class SearchToolbar extends AlertsMixin(BpmMixin(QueryMixin(SearchMixin(SearchOp
411
midiManager.registerInput(
412
this.settings.getString('midi.volume.value'),
413
e => {
414
- const value = e.rawValue;
+ const value = e.rawValue >= 1 ? e.rawValue / 127 : e.rawValue;
415
let exp = Number(this.settings.getString('midi.volume.exponentialFactor'));
416
let linear = Number(this.settings.getString('midi.volume.linearFactor'));
417
// 0.93*x^1/2.5 looks to match the closest curve,
0 commit comments