From 6ba86c3852dffecb1aaa9dfcbef58e8559bba95e Mon Sep 17 00:00:00 2001 From: passivestar <60579014+passivestar@users.noreply.github.com> Date: Tue, 19 Nov 2024 08:19:05 +0400 Subject: Disable the debugger thread selector when there's nothing to select --- editor/debugger/script_editor_debugger.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'editor/debugger/script_editor_debugger.cpp') diff --git a/editor/debugger/script_editor_debugger.cpp b/editor/debugger/script_editor_debugger.cpp index da59450dd0..416e6f07dd 100644 --- a/editor/debugger/script_editor_debugger.cpp +++ b/editor/debugger/script_editor_debugger.cpp @@ -1062,6 +1062,7 @@ void ScriptEditorDebugger::_update_buttons_state() { for (KeyValue &I : threads_debugged) { threadss.push_back(&I.value); } + threads->set_disabled(threadss.is_empty()); threadss.sort_custom(); threads->clear(); -- cgit v1.2.3