We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e24df8 commit 2474de9Copy full SHA for 2474de9
python3/vimspector/stack_trace.py
@@ -363,7 +363,8 @@ def _DrawThreads( self ):
363
hl = 'CursorLineNr' )
364
365
for thread in s.threads:
366
- icon = '+' if not thread.IsExpanded() else '-'
+ icon = '+' if ( thread.CanExpand()
367
+ and not thread.IsExpanded() ) else '-'
368
line = utils.AppendToBuffer(
369
self._buf,
370
f'{icon} Thread {thread.id}: {thread.thread["name"]} '
0 commit comments