mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-18 06:55:48 +03:00
Improve default PATH in macOS to make available lldb-dap from default.
This commit is contained in:
@@ -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 ) )
|
||||
|
||||
Reference in New Issue
Block a user