diff --git a/libs/ui/include/psemek/ui/element.hpp b/libs/ui/include/psemek/ui/element.hpp index a9828104..37a442ec 100644 --- a/libs/ui/include/psemek/ui/element.hpp +++ b/libs/ui/include/psemek/ui/element.hpp @@ -103,13 +103,14 @@ namespace psemek::ui private: element * parent_ = nullptr; async::event_loop * loop_ = nullptr; - bool enabled_ = true; - bool hidden_ = false; std::shared_ptr style_; std::shared_ptr own_style_; mutable std::shared_ptr merged_style_; mutable std::shared_ptr merged_own_style_; + bool reshape_posted_ = false; + bool enabled_ = true; + bool hidden_ = false; mutable std::vector> delayed_callbacks_;