X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Frowitem.cpp;h=b64294c48907f564540c8edb91b33be01affdc95;hb=32218d3e708553b4508c3510d388aded58068381;hp=120a00a39d1cd0a1fb478c5facf446d86e8722ad;hpb=be9e7b4bb29b6594ec2b64442748ab135b684bf8;p=pulseview.git diff --git a/pv/view/rowitem.cpp b/pv/view/rowitem.cpp index 120a00a..b64294c 100644 --- a/pv/view/rowitem.cpp +++ b/pv/view/rowitem.cpp @@ -45,6 +45,9 @@ void RowItem::set_layout_v_offset(int v_offset) return; _layout_v_offset = v_offset; + + if (_owner) + _owner->extents_changed(false, true); } int RowItem::visual_v_offset() const @@ -55,6 +58,9 @@ int RowItem::visual_v_offset() const void RowItem::set_visual_v_offset(int v_offset) { _visual_v_offset = v_offset; + + if (_owner) + _owner->appearance_changed(true, true); } void RowItem::force_to_v_offset(int v_offset)