Use more specific check for dragging wait setting

This commit is contained in:
kobewi
2026-01-10 15:13:06 +01:00
parent 94971e1b47
commit c1c983df8e
+1 -1
View File
@@ -1067,7 +1067,7 @@ void EditorNode::_notification(int p_what) {
recent_scenes->reset_size();
}
if (EditorSettings::get_singleton()->check_changed_settings_in_group("interface/editor")) {
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);
editor_dock_manager->update_tab_styles();