aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Moe Gustavsen <richard.gustavsen@qt.io>2020-12-16 12:18:15 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-01-11 10:15:03 +0000
commitd1cfa5318908ae07ec5209f0a9aa72248212f113 (patch)
tree7f335ab799e266242b97601f4de9eeda2e081e88
parenta3c2f220d84abd2ab085ae283d43390a81c88b10 (diff)
QQuickStyleItem: use correct enum number
It should of course be 4, not 3. The result of it being 3 is that we would always also print info when debugging imagerect. Change-Id: I257159b25b8aad1848d82af9855ecd194e7360a0 Reviewed-by: Jan Arve Sæther <jan-arve.saether@qt.io> (cherry picked from commit 672a085366f0e3e653f374537624a52ada047650) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--src/imports/nativestyle/items/qquickstyleitem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imports/nativestyle/items/qquickstyleitem.h b/src/imports/nativestyle/items/qquickstyleitem.h
index 1dbbbe49..be03e988 100644
--- a/src/imports/nativestyle/items/qquickstyleitem.h
+++ b/src/imports/nativestyle/items/qquickstyleitem.h
@@ -195,7 +195,7 @@ public:
NoDebug = 0x000,
Debug = 0x001,
Info = 0x002,
- ImageRect = 0x003,
+ ImageRect = 0x004,
ContentRect = 0x008,
LayoutRect = 0x010,
Unscaled = 0x020,