From b03a1df19da3e7e6732cff7b21743d214336d00d Mon Sep 17 00:00:00 2001 From: Loren Burkholder Date: Sat, 24 Jul 2021 12:51:45 -0400 Subject: [PATCH] Add close button at footer --- resources/qml/ReadReceipts.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/resources/qml/ReadReceipts.qml b/resources/qml/ReadReceipts.qml index 21b9b15e..b3bca9db 100644 --- a/resources/qml/ReadReceipts.qml +++ b/resources/qml/ReadReceipts.qml @@ -115,4 +115,10 @@ ApplicationWindow { } + footer: DialogButtonBox { + standardButtons: DialogButtonBox.Ok + onAccepted: readReceiptsRoot.close() + + } + }