summaryrefslogtreecommitdiff
path: root/share/qtcreator/welcomescreen/widgets
diff options
context:
space:
mode:
Diffstat (limited to 'share/qtcreator/welcomescreen/widgets')
-rw-r--r--share/qtcreator/welcomescreen/widgets/LinkedText.qml1
-rw-r--r--share/qtcreator/welcomescreen/widgets/NativeText.qml2
-rw-r--r--share/qtcreator/welcomescreen/widgets/SearchBar.qml3
3 files changed, 6 insertions, 0 deletions
diff --git a/share/qtcreator/welcomescreen/widgets/LinkedText.qml b/share/qtcreator/welcomescreen/widgets/LinkedText.qml
index 57ca4fae06..7431c5e781 100644
--- a/share/qtcreator/welcomescreen/widgets/LinkedText.qml
+++ b/share/qtcreator/welcomescreen/widgets/LinkedText.qml
@@ -105,4 +105,5 @@ NativeText {
}
]
}
+ Accessible.role: Accessible.Link
}
diff --git a/share/qtcreator/welcomescreen/widgets/NativeText.qml b/share/qtcreator/welcomescreen/widgets/NativeText.qml
index 2809ccdb38..8f64217805 100644
--- a/share/qtcreator/welcomescreen/widgets/NativeText.qml
+++ b/share/qtcreator/welcomescreen/widgets/NativeText.qml
@@ -31,4 +31,6 @@ import QtQuick 2.1
Text {
renderType: Text.NativeRendering
+ Accessible.name: text
+ Accessible.role: Accessible.StaticText
}
diff --git a/share/qtcreator/welcomescreen/widgets/SearchBar.qml b/share/qtcreator/welcomescreen/widgets/SearchBar.qml
index 68690640c7..8d95f81a06 100644
--- a/share/qtcreator/welcomescreen/widgets/SearchBar.qml
+++ b/share/qtcreator/welcomescreen/widgets/SearchBar.qml
@@ -59,4 +59,7 @@ Rectangle {
}
}
}
+ Accessible.name: text
+ Accessible.description: placeholderText
+ Accessible.role: Accessible.EditableText
}