summaryrefslogtreecommitdiffstats
path: root/editor/action_map_editor.cpp
diff options
context:
space:
mode:
authorjsjtxietian <jsjtxietian@outlook.com>2023-08-22 15:44:20 +0800
committerjsjtxietian <jsjtxietian@outlook.com>2023-08-22 16:36:48 +0800
commit9c1278cae893117128a13aad209d06ac80905614 (patch)
tree175ea9d1f0f0ed81a6761e7c0f669569ce08eed3 /editor/action_map_editor.cpp
parent8e0346badefcd69656e1ae3ba12d6eaafd7a4fae (diff)
downloadredot-engine-9c1278cae893117128a13aad209d06ac80905614.tar.gz
save show built-in actions button state
Diffstat (limited to 'editor/action_map_editor.cpp')
-rw-r--r--editor/action_map_editor.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/editor/action_map_editor.cpp b/editor/action_map_editor.cpp
index 146b5a794c..36b19198e6 100644
--- a/editor/action_map_editor.cpp
+++ b/editor/action_map_editor.cpp
@@ -31,6 +31,7 @@
#include "editor/action_map_editor.h"
#include "editor/editor_scale.h"
+#include "editor/editor_settings.h"
#include "editor/event_listener_line_edit.h"
#include "editor/input_event_configuration_dialog.h"
#include "scene/gui/check_button.h"
@@ -224,6 +225,7 @@ void ActionMapEditor::_tree_item_activated() {
void ActionMapEditor::set_show_builtin_actions(bool p_show) {
show_builtin_actions = p_show;
show_builtin_actions_checkbutton->set_pressed(p_show);
+ EditorSettings::get_singleton()->set_project_metadata("project_settings", "show_builtin_actions", show_builtin_actions);
// Prevent unnecessary updates of action list when cache is empty.
if (!actions_cache.is_empty()) {
@@ -568,11 +570,13 @@ ActionMapEditor::ActionMapEditor() {
_add_edit_text_changed(add_edit->get_text());
show_builtin_actions_checkbutton = memnew(CheckButton);
- show_builtin_actions_checkbutton->set_pressed(false);
show_builtin_actions_checkbutton->set_text(TTR("Show Built-in Actions"));
show_builtin_actions_checkbutton->connect("toggled", callable_mp(this, &ActionMapEditor::set_show_builtin_actions));
add_hbox->add_child(show_builtin_actions_checkbutton);
+ show_builtin_actions = EditorSettings::get_singleton()->get_project_metadata("project_settings", "show_builtin_actions", false);
+ show_builtin_actions_checkbutton->set_pressed(show_builtin_actions);
+
main_vbox->add_child(add_hbox);
// Action Editor Tree