1
0
Fork 0

Fix dock tab styles not updating when changed in Editor Settings

This commit is contained in:
jelo 2026-01-13 19:46:25 +00:00
parent 50277787ea
commit 702ec43bcd
1 changed files with 3 additions and 0 deletions

View File

@ -1070,6 +1070,9 @@ void EditorNode::_notification(int p_what) {
if (EditorSettings::get_singleton()->check_changed_settings_in_group("interface/editor/dragging_")) {
theme->set_constant("dragging_unfold_wait_msec", "Tree", (float)EDITOR_GET("interface/editor/dragging_hover_wait_seconds") * 1000);
theme->set_constant("hover_switch_wait_msec", "TabBar", (float)EDITOR_GET("interface/editor/dragging_hover_wait_seconds") * 1000);
}
if (EditorSettings::get_singleton()->check_changed_settings_in_group("interface/editor")) {
editor_dock_manager->update_tab_styles();
}