From ad68cd8b4c5eb05c807f261f7ba7e62475e41ceb Mon Sep 17 00:00:00 2001 From: NepNep21 <43792621+NepNep21@users.noreply.github.com> Date: Wed, 25 Oct 2023 19:38:04 -0300 Subject: [PATCH] Switch to X icon and add close button --- resources/qml/dialogs/IgnoredUsers.qml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/resources/qml/dialogs/IgnoredUsers.qml b/resources/qml/dialogs/IgnoredUsers.qml index 6527eb18..2d8cc920 100644 --- a/resources/qml/dialogs/IgnoredUsers.qml +++ b/resources/qml/dialogs/IgnoredUsers.qml @@ -23,6 +23,7 @@ Window { id: view anchors.fill: parent spacing: Nheko.paddingMedium + footerPositioning: ListView.OverlayFooter model: TimelineManager.ignoredUsers header: ColumnLayout { @@ -59,12 +60,24 @@ Window { ImageButton { Layout.preferredHeight: 24 Layout.preferredWidth: 24 - image: ":/icons/icons/ui/delete.svg" + image: ":/icons/icons/ui/dismiss.svg" hoverEnabled: true ToolTip.visible: hovered ToolTip.text: qsTr("Stop Ignoring.") onClicked: profile.ignored = false } } + footer: DialogButtonBox { + z: 2 + width: view.width + alignment: Qt.AlignRight + standardButtons: DialogButtonBox.Ok + onAccepted: ignoredUsers.close() + + background: Rectangle { + anchors.fill: parent + color: palette.window + } + } } }