diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-19 17:13:56 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-19 17:13:56 +0200 |
commit | 0a4aedb36065f66fc7e99cb2e6de3e55242f9dfb (patch) | |
tree | e89164a8e00b6f4a7f4e13d520316e4de4009991 /editor/action_map_editor.cpp | |
parent | c8d76c1edd53cb835fa172b7aad061ea87e345b6 (diff) | |
parent | b277a2985d81efd4e15d8606ddd6ee12db0b2ed1 (diff) | |
download | redot-engine-0a4aedb36065f66fc7e99cb2e6de3e55242f9dfb.tar.gz |
Merge pull request #97187 from KoBeWi/do_not
Don't store project metadata when loading
Diffstat (limited to 'editor/action_map_editor.cpp')
-rw-r--r-- | editor/action_map_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/action_map_editor.cpp b/editor/action_map_editor.cpp index d648dab298..0d89f37dd2 100644 --- a/editor/action_map_editor.cpp +++ b/editor/action_map_editor.cpp @@ -589,7 +589,7 @@ ActionMapEditor::ActionMapEditor() { 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); + show_builtin_actions_checkbutton->set_pressed_no_signal(show_builtin_actions); main_vbox->add_child(add_hbox); |