diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-03-04 11:42:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-04 11:42:53 +0100 |
commit | 8845798b44883b9b2c5a552aaa85530298c8a71a (patch) | |
tree | 7f5f4797d241d6f3a619b668830137cdb7ed67de /scene/gui/check_button.cpp | |
parent | f94233ee539e4ddfd6497d0f37257c6dd59efcb7 (diff) | |
parent | a06f82ca4dbdff633424e59243dc411bb8070b99 (diff) |
Merge pull request #58739 from Calinou/control-add-constructors
Add optional constructor arguments to more Control nodes
Diffstat (limited to 'scene/gui/check_button.cpp')
-rw-r--r-- | scene/gui/check_button.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scene/gui/check_button.cpp b/scene/gui/check_button.cpp index 5e3131f8a0..527b0061ac 100644 --- a/scene/gui/check_button.cpp +++ b/scene/gui/check_button.cpp @@ -111,9 +111,12 @@ void CheckButton::_notification(int p_what) { } } -CheckButton::CheckButton() { +CheckButton::CheckButton(const String &p_text) : + Button(p_text) { set_toggle_mode(true); + set_text_alignment(HORIZONTAL_ALIGNMENT_LEFT); + if (is_layout_rtl()) { _set_internal_margin(SIDE_LEFT, get_icon_size().width); } else { |