[Scene] Add SceneStringName::toggled
This commit is contained in:
parent
f648de1a83
commit
52889ab7ee
44 changed files with 74 additions and 72 deletions
|
|
@ -245,8 +245,8 @@ HistoryDock::HistoryDock() {
|
|||
current_scene_checkbox->set_text(TTR("Scene"));
|
||||
current_scene_checkbox->set_h_size_flags(SIZE_EXPAND_FILL);
|
||||
current_scene_checkbox->set_clip_text(true);
|
||||
current_scene_checkbox->connect("toggled", callable_mp(this, &HistoryDock::refresh_history).unbind(1));
|
||||
current_scene_checkbox->connect("toggled", callable_mp(this, &HistoryDock::save_options).unbind(1));
|
||||
current_scene_checkbox->connect(SceneStringName(toggled), callable_mp(this, &HistoryDock::refresh_history).unbind(1));
|
||||
current_scene_checkbox->connect(SceneStringName(toggled), callable_mp(this, &HistoryDock::save_options).unbind(1));
|
||||
|
||||
global_history_checkbox = memnew(CheckBox);
|
||||
mode_hb->add_child(global_history_checkbox);
|
||||
|
|
@ -255,8 +255,8 @@ HistoryDock::HistoryDock() {
|
|||
global_history_checkbox->set_text(TTR("Global"));
|
||||
global_history_checkbox->set_h_size_flags(SIZE_EXPAND_FILL);
|
||||
global_history_checkbox->set_clip_text(true);
|
||||
global_history_checkbox->connect("toggled", callable_mp(this, &HistoryDock::refresh_history).unbind(1));
|
||||
global_history_checkbox->connect("toggled", callable_mp(this, &HistoryDock::save_options).unbind(1));
|
||||
global_history_checkbox->connect(SceneStringName(toggled), callable_mp(this, &HistoryDock::refresh_history).unbind(1));
|
||||
global_history_checkbox->connect(SceneStringName(toggled), callable_mp(this, &HistoryDock::save_options).unbind(1));
|
||||
|
||||
action_list = memnew(ItemList);
|
||||
action_list->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue