summaryrefslogtreecommitdiffstats
path: root/editor/script_create_dialog.h
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2019-07-04 17:30:44 +0200
committerHugo Locurcio <hugo.locurcio@hugo.pro>2019-07-04 17:32:59 +0200
commitacbd0fea9751cb49eccff0d08f94ed8217fca263 (patch)
treec5c3d59abc85e94c44f3384b5d69387acef7b6d4 /editor/script_create_dialog.h
parent550f436f8fbea86984a845c821270fba78189143 (diff)
downloadredot-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/script_create_dialog.h')
-rw-r--r--editor/script_create_dialog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/script_create_dialog.h b/editor/script_create_dialog.h
index 61f87f5732..288b8f604b 100644
--- a/editor/script_create_dialog.h
+++ b/editor/script_create_dialog.h
@@ -33,7 +33,7 @@
#include "editor/editor_file_dialog.h"
#include "editor/editor_settings.h"
-#include "scene/gui/check_button.h"
+#include "scene/gui/check_box.h"
#include "scene/gui/dialogs.h"
#include "scene/gui/grid_container.h"
#include "scene/gui/line_edit.h"
@@ -57,7 +57,7 @@ class ScriptCreateDialog : public ConfirmationDialog {
LineEdit *file_path;
Button *path_button;
EditorFileDialog *file_browse;
- CheckButton *internal;
+ CheckBox *internal;
Label *internal_label;
VBoxContainer *path_vb;
AcceptDialog *alert;