Rearrange ui::element field for less padding
This commit is contained in:
parent
b1d9c2c08d
commit
78c573b091
1 changed files with 3 additions and 2 deletions
|
|
@ -103,13 +103,14 @@ namespace psemek::ui
|
||||||
private:
|
private:
|
||||||
element * parent_ = nullptr;
|
element * parent_ = nullptr;
|
||||||
async::event_loop * loop_ = nullptr;
|
async::event_loop * loop_ = nullptr;
|
||||||
bool enabled_ = true;
|
|
||||||
bool hidden_ = false;
|
|
||||||
std::shared_ptr<struct style> style_;
|
std::shared_ptr<struct style> style_;
|
||||||
std::shared_ptr<struct style> own_style_;
|
std::shared_ptr<struct style> own_style_;
|
||||||
mutable std::shared_ptr<struct style> merged_style_;
|
mutable std::shared_ptr<struct style> merged_style_;
|
||||||
mutable std::shared_ptr<struct style> merged_own_style_;
|
mutable std::shared_ptr<struct style> merged_own_style_;
|
||||||
|
|
||||||
bool reshape_posted_ = false;
|
bool reshape_posted_ = false;
|
||||||
|
bool enabled_ = true;
|
||||||
|
bool hidden_ = false;
|
||||||
|
|
||||||
mutable std::vector<util::function<void()>> delayed_callbacks_;
|
mutable std::vector<util::function<void()>> delayed_callbacks_;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue