From 9ba9b412405d2d7e877910f0f2cab85a02a066a3 Mon Sep 17 00:00:00 2001 From: Marius Kittler Date: Thu, 22 Nov 2018 22:00:31 +0100 Subject: [PATCH] Quick GUI: Add control to deletion dialog so it is shown correctly --- qml/EntriesPage.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/qml/EntriesPage.qml b/qml/EntriesPage.qml index 3638cdd..151210a 100644 --- a/qml/EntriesPage.qml +++ b/qml/EntriesPage.qml @@ -65,6 +65,12 @@ Kirigami.ScrollablePage { title: qsTr("Delete %1?").arg(entryDesc) onAccepted: entryModel.removeRows(this.entryIndex, 1, rootIndex) + ColumnLayout { + Controls.Label { + text: " " + } + } + function confirmDeletion(entryName, entryIndex) { var isNode = entryModel.isNode(entryModel.index(entryIndex, 0, rootIndex))