Maran23 / script-ide

Script-IDE is a plugin for Godot. It transforms the Script UI into an IDE like UI. Tabs are used for navigating between scripts. The default Outline got an overhaul and now shows all members of the script (not just methods) with unique icons for faster navigation.
MIT License
368 stars 16 forks source link

Request: Tooltip for long function names #15

Closed Red3Tango closed 1 year ago

Red3Tango commented 1 year ago

Would be nice to have a tooltip on the function names if they are cut-off due to length. Bottom image is default Godot. tooltip

Maran23 commented 1 year ago

I actually disabled the tooltips as they consume all key events when activated. So when you open the outline popup and a tooltip appears when hovering over any item, you can not press an key. Not sure if this can be fixed, maybe worth searching in the godot issues.

Maran23 commented 1 year ago

Tooltips are now only deactivated in the Popup due to the bug I encountered above. They work as you expect in the Outline. :)

Enabled in Outline: image

Disabled when Outline in Popup: image