mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-07-14 15:02:50 +03:00
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:
@@ -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 ) {
|
||||
|
||||
Reference in New Issue
Block a user