aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/plugins.qmltypes
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@qt.io>2017-05-12 19:14:19 +0200
committerJ-P Nurmi <jpnurmi@qt.io>2017-05-16 03:09:44 +0000
commit21f5f9e07655f0ac34c65cc2a14489213097c622 (patch)
treee155fdfb5bd8bf6cbe34c6c16ba685b7704214b9 /src/imports/controls/plugins.qmltypes
parentebcefb5586b387445d4152ba2ed833074d9a6ad6 (diff)
QQuickDefaultBusyIndicator: allow specifying pen and fill separately
One color is enough for the current Default style, but if we allow configuring the colors, it must be possible to have them separately to be able to get decent looks. Change-Id: Ibbe6b73142edc9829ca75603cd2e86654ae824b0 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'src/imports/controls/plugins.qmltypes')
-rw-r--r--src/imports/controls/plugins.qmltypes3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/imports/controls/plugins.qmltypes b/src/imports/controls/plugins.qmltypes
index fee7c934..e10c187a 100644
--- a/src/imports/controls/plugins.qmltypes
+++ b/src/imports/controls/plugins.qmltypes
@@ -40,7 +40,8 @@ Module {
prototype: "QQuickItem"
exports: ["QtQuick.Controls.impl/BusyIndicatorImpl 2.0"]
exportMetaObjectRevisions: [0]
- Property { name: "color"; type: "QColor" }
+ Property { name: "pen"; type: "QColor" }
+ Property { name: "fill"; type: "QColor" }
}
Component {
name: "QQuickDefaultDial"