1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-12-23 18:15:45 -05:00

Merge pull request #136 from herrfeuer/master

fix QtWheelEvent propagation in valuedial and valuedialz
This commit is contained in:
f4exb 2018-02-12 18:25:07 +01:00 committed by GitHub
commit bfaf96f8ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -344,6 +344,7 @@ void ValueDial::wheelEvent(QWheelEvent* event)
}
setValue(m_valueNew);
emit changed(m_valueNew);
event->accept();
}
}

View File

@ -428,6 +428,7 @@ void ValueDialZ::wheelEvent(QWheelEvent* event)
setValue(m_valueNew);
emit changed(m_valueNew);
event->accept();
}
}