Improve default PATH in macOS to make available lldb-dap from default.

This commit is contained in:
Martín Lucas Golini
2025-01-25 11:06:57 -03:00
parent 5de32ce4a3
commit 4bbcfdd78b
2 changed files with 79 additions and 56 deletions

View File

@@ -2140,7 +2140,7 @@ bool DebuggerPlugin::onMouseMove( UICodeEditor* editor, const Vector2i& position
const Uint32& flags ) {
if ( !mDebugger || !mListener || !mDebugger->isServerConnected() ||
mDebuggingState != StatusDebuggerController::State::Paused || flags != 0 ) {
mDebuggingState != StatusDebuggerController::State::Paused ) {
return false;
}
@@ -2148,6 +2148,9 @@ bool DebuggerPlugin::onMouseMove( UICodeEditor* editor, const Vector2i& position
if ( localPos.x <= editor->getGutterWidth() )
return false;
if ( editor->getTooltip() )
editor->getTooltip()->hide();
editor->debounce(
[this, editor, position]() {
if ( !mManager->getSplitter()->editorExists( editor ) )