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
|
id: view
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
spacing: Nheko.paddingMedium
|
spacing: Nheko.paddingMedium
|
||||||
|
footerPositioning: ListView.OverlayFooter
|
||||||
|
|
||||||
model: TimelineManager.ignoredUsers
|
model: TimelineManager.ignoredUsers
|
||||||
header: ColumnLayout {
|
header: ColumnLayout {
|
||||||
|
@ -59,12 +60,24 @@ Window {
|
||||||
ImageButton {
|
ImageButton {
|
||||||
Layout.preferredHeight: 24
|
Layout.preferredHeight: 24
|
||||||
Layout.preferredWidth: 24
|
Layout.preferredWidth: 24
|
||||||
image: ":/icons/icons/ui/delete.svg"
|
image: ":/icons/icons/ui/dismiss.svg"
|
||||||
hoverEnabled: true
|
hoverEnabled: true
|
||||||
ToolTip.visible: hovered
|
ToolTip.visible: hovered
|
||||||
ToolTip.text: qsTr("Stop Ignoring.")
|
ToolTip.text: qsTr("Stop Ignoring.")
|
||||||
onClicked: profile.ignored = false
|
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