Merge pull request #114829 from KoBeWi/don't_drag_it_too_much

Use more specific check for dragging wait setting
This commit is contained in:
Rémi Verschelde
2026-01-10 23:51:37 +01:00

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();