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

@@ -1226,6 +1226,10 @@ bool AutoCompletePlugin::onMouseMove( UICodeEditor* editor, const Vector2i& posi
return false;
Vector2f localPos( editor->convertToNodeSpace( position.asFloat() ) );
if ( localPos.x <= editor->getGutterWidth() )
return false;
if ( mBoxRect.contains( localPos ) ) {
editor->getUISceneNode()->setCursor( Cursor::Hand );
return true;