Skip to content

Commit 16ba3f8

Browse files
[ui]: Fix the flowIn/out tooltip visible at creation
1 parent 445caea commit 16ba3f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

meshroom/ui/qml/GraphEditor/AttributePin.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ RowLayout {
267267
// elements upon their first display without waiting for a mouse interaction
268268
property bool parentNotReady: nameContainer.width == 0
269269

270-
property bool hovered: parentNotReady || (inputConnectMA.containsMouse ||
270+
property bool hovered: (nameLabel.visible && parentNotReady) || (inputConnectMA.containsMouse ||
271271
inputConnectMA.drag.active ||
272272
inputDropArea.containsDrag ||
273273
outputConnectMA.containsMouse ||

0 commit comments

Comments
 (0)