More fixes. Added debuggers to health tool.

This commit is contained in:
Martín Lucas Golini
2025-01-13 01:24:30 -03:00
parent 882e68542e
commit fb3b866f29
9 changed files with 179 additions and 29 deletions

View File

@@ -1830,8 +1830,11 @@ void LSPClientPlugin::tryDisplayTooltip( UICodeEditor* editor, const LSPHover& r
bool LSPClientPlugin::onMouseMove( UICodeEditor* editor, const Vector2i& position,
const Uint32& flags ) {
auto localPos( editor->convertToNodeSpace( position.asFloat() ) );
if ( localPos.x <= editor->getGutterWidth() )
return false;
if ( mBreadcrumb ) {
auto localPos( editor->convertToNodeSpace( position.asFloat() ) );
if ( localPos.y < mPluginTopSpace && localPos.x < editor->getTopAreaWidth() &&
localPos.x >= 0 ) {
if ( !mHoveringBreadcrumb ) {