Canvas: initiate size allocation process from GTK-level size allocate event

This commit is contained in:
Paul Davis 2020-06-10 15:26:34 -06:00
parent 79b424ab6c
commit 99da7c977f

View file

@ -874,6 +874,8 @@ GtkCanvas::on_size_allocate (Gtk::Allocation& a)
} }
#endif #endif
Rect r (a.get_x(), a.get_y(), a.get_width(), a.get_height());
_root.size_allocate (r);
} }
/** Handler for GDK expose events. /** Handler for GDK expose events.