aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Arve Sæther <jan-arve.saether@qt.io>2020-06-10 08:17:21 +0200
committerJan Arve Sæther <jan-arve.saether@qt.io>2020-06-10 08:19:42 +0000
commit94268de55368b9f433d78effad132d1370054286 (patch)
treec310b5878915205e6f8e15f1bc5d9f4ebbeca4fe
parentd926526bd7e2e0ed8c11463da8560f533b090f27 (diff)
QDebug, print 9-patch margins too
Change-Id: I23f2a1ae388f3819b41ed64ca15e8af9c6629fc8 Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@qt.io>
-rw-r--r--src/imports/nativestyle/items/qquickstyleitem.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/imports/nativestyle/items/qquickstyleitem.cpp b/src/imports/nativestyle/items/qquickstyleitem.cpp
index 3d03099a..c536c3d0 100644
--- a/src/imports/nativestyle/items/qquickstyleitem.cpp
+++ b/src/imports/nativestyle/items/qquickstyleitem.cpp
@@ -72,7 +72,8 @@ QDebug operator<<(QDebug debug, const StyleItemGeometry &cg)
debug << "implicitSize:" << cg.implicitSize << ", ";
debug << "contentRect:" << cg.contentRect << ", ";
debug << "layoutRect:" << cg.layoutRect << ", ";
- debug << "minimumSize:" << cg.minimumSize;
+ debug << "minimumSize:" << cg.minimumSize << ", ";
+ debug << "9patchMargins:" << cg.ninePatchMargins;
debug << ')';
return debug;
}