From acbd0fea9751cb49eccff0d08f94ed8217fca263 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Thu, 4 Jul 2019 17:30:44 +0200 Subject: 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. --- editor/script_create_dialog.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'editor/script_create_dialog.h') 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; -- cgit v1.2.3