X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Fviewport.cpp;h=75902af2bc7588ba08fc9d4b6fe883e886e108c8;hb=65c34596346fbf7d25fe2065728b86c207018586;hp=bc010b4bd02fa3cd11270397c87e2588df2af461;hpb=3eb29afdb641606c2e2e059289d8cc103d027a25;p=pulseview.git diff --git a/pv/view/viewport.cpp b/pv/view/viewport.cpp index bc010b4b..75902af2 100644 --- a/pv/view/viewport.cpp +++ b/pv/view/viewport.cpp @@ -68,9 +68,9 @@ void Viewport::paintEvent(QPaintEvent*) p.setRenderHint(QPainter::Antialiasing); if (view_.cursors_shown()) - view_.cursors().draw_viewport_background(p, rect()); + view_.cursors()->draw_viewport_background(p, rect()); - const RowItemPaintParams pp(0, width()); + const RowItemPaintParams pp(0, width(), view_.scale(), view_.offset()); // Plot the signal for (const shared_ptr r : row_items) @@ -86,7 +86,7 @@ void Viewport::paintEvent(QPaintEvent*) r->paint_fore(p, pp); if (view_.cursors_shown()) - view_.cursors().draw_viewport_foreground(p, rect()); + view_.cursors()->draw_viewport_foreground(p, rect()); p.end(); }