X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fwidgets%2Fpopup.cpp;h=17bc719130a5ef49eb9c2acdfc60c4696593a93f;hp=de2d1b57010643228bb28c5ba713eb25723c55eb;hb=2ad82c2e40b6865481733913a2c32735602f63c4;hpb=f32905530347e1020d5ce7959123cf797c9a4829 diff --git a/pv/widgets/popup.cpp b/pv/widgets/popup.cpp index de2d1b5..17bc719 100644 --- a/pv/widgets/popup.cpp +++ b/pv/widgets/popup.cpp @@ -65,7 +65,6 @@ void Popup::set_position(const QPoint point, Position pos) MarginWidth + ((pos == Bottom) ? ArrowLength : 0), MarginWidth + ((pos == Left) ? ArrowLength : 0), MarginWidth + ((pos == Top) ? ArrowLength : 0)); - } bool Popup::eventFilter(QObject *obj, QEvent *evt) @@ -145,8 +144,7 @@ QPolygon Popup::arrow_polygon() const const QPoint p = mapFromGlobal(point_); const int l = ArrowLength + ArrowOverlap; - switch (pos_) - { + switch (pos_) { case Right: poly << QPoint(p.x() + l, p.y() - l); break; @@ -163,8 +161,7 @@ QPolygon Popup::arrow_polygon() const poly << p; - switch (pos_) - { + switch (pos_) { case Right: case Bottom: poly << QPoint(p.x() + l, p.y() + l);