Qml/main: add a not implemented dialog to the delete button
This commit is contained in:
parent
ad4f429cd9
commit
f07bd10306
1 changed files with 10 additions and 0 deletions
|
|
@ -83,6 +83,16 @@ Kirigami.ApplicationWindow {
|
|||
}
|
||||
Controls.Button {
|
||||
text: "Delete"
|
||||
onClicked: notImplementedDialog.open()
|
||||
Kirigami.Dialog {
|
||||
id: notImplementedDialog
|
||||
title: "Not implemented!"
|
||||
standardButtons: Kirigami.Dialog.Ok
|
||||
padding: Kirigami.Units.largeSpacing
|
||||
Controls.Label {
|
||||
text: "Deleting is not implemented yet"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue