]> sigrok.org Git - pulseview.git/blobdiff - pv/view/viewport.cpp
Add a pointer to the current View inside Trace
[pulseview.git] / pv / view / viewport.cpp
index 0e0ae8ae4ad0807f5b99abe1f31ca458f437af94..06fab904e75168fab06a9499574446959c93e9a3 100644 (file)
@@ -69,12 +69,10 @@ void Viewport::paintEvent(QPaintEvent*)
                _view.cursors().draw_viewport_background(p, rect());
 
        // Plot the signal
-       const int v_offset = _view.v_offset();
        BOOST_FOREACH(const shared_ptr<Trace> t, traces)
        {
                assert(t);
-               t->paint(p, t->get_v_offset() - v_offset, 0, width(),
-                       _view.scale(), _view.offset());
+               t->paint(p, 0, width());
        }
 
        if (_view.cursors_shown())