From c1fa1e1a29360abd2b9ea45f528ce02a167840c7 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 27 Jul 2021 12:26:26 -0600 Subject: [PATCH] canvas: when an item's position is set, its bounding box has changed --- libs/canvas/item.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/canvas/item.cc b/libs/canvas/item.cc index 07ece48863..8f6bfd498f 100644 --- a/libs/canvas/item.cc +++ b/libs/canvas/item.cc @@ -296,7 +296,7 @@ Item::set_position (Duple p) _canvas->item_moved (this, pre_change_parent_bounding_box); if (_parent) { - _parent->child_changed (false); + _parent->child_changed (true); } } }