various: adding files missing in last commit
Oddly some files didn't commit previously. This commit adds those.
This commit is contained in:
@@ -238,8 +238,8 @@ void CurveView::VerticalScaleChangedEvent(double scale)
|
||||
void CurveView::wheelEvent(QWheelEvent *event)
|
||||
{
|
||||
if (WheelEventIsAZoomEvent(event)) {
|
||||
if (event->delta() != 0) {
|
||||
if (event->delta() > 0) {
|
||||
if (!event->angleDelta().isNull()) {
|
||||
if (event->angleDelta().x() + event->angleDelta().y() > 0) {
|
||||
emit ScaleChanged(GetScale() * 1.1);
|
||||
SetYScale(GetYScale() * 1.1);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user