Disable the non working waveform mousewheel zoom

This commit is contained in:
xenakios
2018-03-21 15:36:15 +02:00
parent 5f1a04043b
commit 97dfcedf4d
2 changed files with 2 additions and 1 deletions

View File

@ -764,6 +764,7 @@ void WaveformComponent::mouseDoubleClick(const MouseEvent & e)
void WaveformComponent::mouseWheelMove(const MouseEvent & e, const MouseWheelDetails & wd)
{
return;
double factor = 0.9;
if (wd.deltaY < 0.0)
factor = 1.11111;