Fix crash when enqueued a fold action and editor was closed before the action executed.

Fix linter messages being too long (now wraps the text, fixes issue SpartanJ/ecode#289).
Fix minor issue when reloading linter plugin.
This commit is contained in:
Martín Lucas Golini
2024-07-08 01:21:20 -03:00
parent 45c3745af8
commit 82d9448693
4 changed files with 17 additions and 6 deletions

View File

@@ -1619,7 +1619,7 @@ bool LSPClientPlugin::onMouseMove( UICodeEditor* editor, const Vector2i& positio
},
mHoverDelay, tag );
tryHideTooltip( editor, position );
return editor->getTooltip() && editor->getTooltip()->isVisible();
return editor->getTooltip() && editor->getTooltip()->isVisible() && mSymbolInfoShowing;
}
void LSPClientPlugin::onFocusLoss( UICodeEditor* editor ) {