mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-01-09 10:10:01 +01:00
process high-resolution scroll events for the frequency display
This commit is contained in:
parent
1771fd55e1
commit
8532d9048e
|
|
@ -98,8 +98,13 @@ TuneableFrequencyDisplay.prototype.setupEvents = function() {
|
|||
if (index < 0) return;
|
||||
|
||||
var delta = 10 ** (Math.floor(Math.max(me.exponent, Math.log10(me.frequency))) - index);
|
||||
if (e.originalEvent.deltaY > 0) delta *= -1;
|
||||
var newFrequency = me.frequency + delta;
|
||||
var newFrequency;
|
||||
if ('deltaMode' in e.originalEvent && e.originalEvent.deltaMode === 0) {
|
||||
newFrequency = me.frequency - delta * (e.originalEvent.deltaY / 50);
|
||||
} else {
|
||||
if (e.originalEvent.deltaY > 0) delta *= -1;
|
||||
newFrequency = me.frequency + delta;
|
||||
}
|
||||
|
||||
me.element.trigger('frequencychange', newFrequency);
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue