Improve how we keep expanded variables in debugger.

This commit is contained in:
Martín Lucas Golini
2025-01-18 20:09:38 -03:00
parent 9a72b484de
commit b0d6e6153d
10 changed files with 95 additions and 38 deletions

View File

@@ -2104,7 +2104,7 @@ void LSPClientPlugin::showDocumentSymbols( UICodeEditor* editor ) {
path.reserve( docSymbols.size() );
for ( const auto& sym : docSymbols )
path.emplace_back( sym.name );
tv->selectRowWithPath( path );
tv->openRowWithPath( path );
}
}