Only show the node port legend on hover

This commit is contained in:
Fingercomp 2025-08-01 20:44:27 +03:00
parent 223bbd5048
commit 189d26c4a1
No known key found for this signature in database
GPG Key ID: BBC71CEE45D86E37

View File

@ -296,7 +296,7 @@ abstract class Node extends Widget with MouseHandler with HoverHandler with Pers
def drawLight(g: Graphics): Unit = {}
def drawLabel(g: Graphics): Unit = {
if (isHovered || isBeingConnected) {
if (isHovered) {
drawPortLegend(g)
}
}