summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--qml/touch/ListViewDelegate.qml3
1 files changed, 3 insertions, 0 deletions
diff --git a/qml/touch/ListViewDelegate.qml b/qml/touch/ListViewDelegate.qml
index d7a033e..8e4ae6b 100644
--- a/qml/touch/ListViewDelegate.qml
+++ b/qml/touch/ListViewDelegate.qml
@@ -138,6 +138,9 @@ Rectangle {
implicitHeight: implicitWidth
Layout.minimumWidth: implicitWidth
onClicked: if (!isSearchView) rect.deleteCity()
+ Accessible.name: qsTr("Remove %1").arg(city.text)
+ Accessible.role: Accessible.Button
+ function accessiblePressAction () { if (!isSearchView) rect.deleteCity() }
Image {
id: imageRemove
anchors.centerIn: parent