X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fviewport.cpp;h=5cb65079f1c98fe61242862404b15c908a6d3602;hp=3811c1e8a143d70b6dc8f03115d1ead1e529c07e;hb=ac0708fb7e6b4010d90a569386810d3d2edc7eb9;hpb=d75c5d12963b35bd8a8c507f565ec5c57fbdaac6 diff --git a/pv/view/viewport.cpp b/pv/view/viewport.cpp index 3811c1e8..5cb65079 100644 --- a/pv/view/viewport.cpp +++ b/pv/view/viewport.cpp @@ -203,8 +203,7 @@ void Viewport::wheelEvent(QWheelEvent *e) { assert(e); - if (e->orientation() == Qt::Vertical) - { + if (e->orientation() == Qt::Vertical) { if (e->modifiers() & Qt::ControlModifier) { // Vertical scrolling with the control key pressed // is intrepretted as vertical scrolling @@ -214,9 +213,7 @@ void Viewport::wheelEvent(QWheelEvent *e) // Vertical scrolling is interpreted as zooming in/out view_.zoom(e->delta() / 120, e->x()); } - } - else if (e->orientation() == Qt::Horizontal) - { + } else if (e->orientation() == Qt::Horizontal) { // Horizontal scrolling is interpreted as moving left/right view_.set_scale_offset(view_.scale(), e->delta() * view_.scale() + view_.offset());