diff options
author | passivestar <60579014+passivestar@users.noreply.github.com> | 2024-11-19 08:19:05 +0400 |
---|---|---|
committer | passivestar <60579014+passivestar@users.noreply.github.com> | 2024-11-19 17:11:43 +0400 |
commit | 6ba86c3852dffecb1aaa9dfcbef58e8559bba95e (patch) | |
tree | ad5a70df7b7c7acd7b130bd5b01c13698312478c /editor | |
parent | fd4c29a189e53a1e085df5b9b9a05cac9351b3ef (diff) | |
download | redot-engine-6ba86c3852dffecb1aaa9dfcbef58e8559bba95e.tar.gz |
Disable the debugger thread selector when there's nothing to select
Diffstat (limited to 'editor')
-rw-r--r-- | editor/debugger/script_editor_debugger.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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<uint64_t, ThreadDebugged> &I : threads_debugged) { threadss.push_back(&I.value); } + threads->set_disabled(threadss.is_empty()); threadss.sort_custom<ThreadSort>(); threads->clear(); |