Skip to content

Commit 9746c52

Browse files
committed
[qml] Shape/Viewer: Add grey outline to Handle component
1 parent 89095c7 commit 9746c52

File tree

1 file changed

+10
-0
lines changed
  • meshroom/ui/qml/Shapes/Viewer/Layers/Utils

1 file changed

+10
-0
lines changed

meshroom/ui/qml/Shapes/Viewer/Layers/Utils/Handle.qml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,14 @@ Rectangle {
6464
height: root.size
6565
color: "#ffffff"
6666
}
67+
68+
// Handle outline
69+
Rectangle {
70+
x: width * -0.5
71+
y: height * -0.5
72+
width: 1.5 * root.size
73+
height: 1.5 * root.size
74+
color: "#66666666"
75+
z: -1
76+
}
6777
}

0 commit comments

Comments
 (0)