From a779778f9cdd0b454797a21f81759962bf5b160d Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Wed, 7 May 2025 21:05:38 -0400 Subject: [PATCH] Improve the message banner on the desktop version Now it's closable, and it hides itself the next time you try to archive a character. --- src/bin/auracite/Main.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/auracite/Main.qml b/src/bin/auracite/Main.qml index cedf467..1f475c7 100644 --- a/src/bin/auracite/Main.qml +++ b/src/bin/auracite/Main.qml @@ -40,6 +40,7 @@ Kirigami.ApplicationWindow { position: Kirigami.InlineMessage.Position.Header actions: type === Kirigami.MessageType.Information ? [openArchiveAction] : [] + showCloseButton: true Layout.fillWidth: true } @@ -104,6 +105,7 @@ Kirigami.ApplicationWindow { text: i18nc("@action:button", "Archive") enabled: inputField.text.length > 0 onClicked: { + messageBanner.visible = false; fileDialog.selectedFile = inputField.text; fileDialog.open(); }