aboutsummaryrefslogtreecommitdiffstats
path: root/src/quicktemplates2/qquickframe.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/quicktemplates2/qquickframe.cpp')
-rw-r--r--src/quicktemplates2/qquickframe.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/quicktemplates2/qquickframe.cpp b/src/quicktemplates2/qquickframe.cpp
index bcc387c1..9deef6be 100644
--- a/src/quicktemplates2/qquickframe.cpp
+++ b/src/quicktemplates2/qquickframe.cpp
@@ -46,7 +46,7 @@ QT_BEGIN_NAMESPACE
\inqmlmodule QtQuick.Controls
\since 5.7
\ingroup qtquickcontrols2-containers
- \brief A logical group of controls within a visual frame.
+ \brief Visual frame for a logical group of controls.
Frame is used to layout a logical group of controls together within a
visual frame. Frame does not provide a layout of its own, but requires
@@ -78,4 +78,11 @@ QQuickFrame::QQuickFrame(QQuickFramePrivate &dd, QQuickItem *parent) :
{
}
+#ifndef QT_NO_ACCESSIBILITY
+QAccessible::Role QQuickFrame::accessibleRole() const
+{
+ return QAccessible::Border;
+}
+#endif // QT_NO_ACCESSIBILITY
+
QT_END_NAMESPACE