Fix popup being cut off in AC time scehdule editor

pull/1030/head
Michael Zanetti 2023-05-20 12:59:01 +02:00
parent 256e6bd54f
commit 5a7f8128e1
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ ColumnLayout {
print("clicked") print("clicked")
if (movedSchedule != null && Math.abs(mouseX - startMouseX) < 5) { if (movedSchedule != null && Math.abs(mouseX - startMouseX) < 5) {
print("opening") print("opening")
var dialog = editDialogComponent.createObject(root, {schedule: movedSchedule}) var dialog = editDialogComponent.createObject(root.parent, {schedule: movedSchedule})
dialog.open() dialog.open()
} }