X-Git-Url: http://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fviewport.cpp;fp=pv%2Fview%2Fviewport.cpp;h=5cb65079f1c98fe61242862404b15c908a6d3602;hp=3811c1e8a143d70b6dc8f03115d1ead1e529c07e;hb=2ad82c2e40b6865481733913a2c32735602f63c4;hpb=a3f678a7cad210fe796f4a76370996a1284da6d4 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());