mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-24 03:58:49 +03:00
Switch to X icon and add close button
This commit is contained in:
parent
0b28e7934d
commit
ad68cd8b4c
1 changed files with 14 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue