fix drawing input anchoring incorrectly when using loader

This commit is contained in:
2026-05-27 12:03:06 +02:00
parent 3963a48a9d
commit d92e5b4cd7
4 changed files with 7 additions and 8 deletions
+4 -4
View File
@@ -309,12 +309,11 @@ Variants {
id: drawingLoader
active: visibilities.isDrawing
anchors.fill: parent
z: 2
sourceComponent: Drawing {
id: drawing
anchors.fill: parent
z: 2
}
}
@@ -322,6 +321,8 @@ Variants {
id: inputLoader
active: visibilities.isDrawing
anchors.fill: parent
z: 2
sourceComponent: DrawingInput {
id: input
@@ -331,7 +332,6 @@ Variants {
panels: panels
popout: panels.drawing
visibilities: visibilities
z: 2
}
}