diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2019-07-04 17:30:44 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2019-07-04 17:32:59 +0200 |
commit | acbd0fea9751cb49eccff0d08f94ed8217fca263 (patch) | |
tree | c5c3d59abc85e94c44f3384b5d69387acef7b6d4 /editor/rename_dialog.h | |
parent | 550f436f8fbea86984a845c821270fba78189143 (diff) | |
download | redot-engine-acbd0fea9751cb49eccff0d08f94ed8217fca263.tar.gz |
Use CheckBoxes in the editor instead of CheckButtons when applicable
CheckButtons should only be used if toggling them has an
immediate effect. Otherwise, CheckBoxes should be used.
Diffstat (limited to 'editor/rename_dialog.h')
-rw-r--r-- | editor/rename_dialog.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/editor/rename_dialog.h b/editor/rename_dialog.h index 4e0fab6a9f..9f0fbf66a1 100644 --- a/editor/rename_dialog.h +++ b/editor/rename_dialog.h @@ -32,7 +32,6 @@ #define RENAME_DIALOG_H #include "scene/gui/check_box.h" -#include "scene/gui/check_button.h" #include "scene/gui/dialogs.h" #include "scene/gui/option_button.h" #include "scene/gui/spin_box.h" @@ -75,9 +74,9 @@ class RenameDialog : public ConfirmationDialog { TabContainer *tabc_features; - CheckButton *cbut_substitute; - CheckButton *cbut_regex; - CheckButton *cbut_process; + CheckBox *cbut_substitute; + CheckBox *cbut_regex; + CheckBox *cbut_process; CheckBox *chk_per_level_counter; Button *but_insert_name; |