diff options
author | Sebastian Kügler <sebas@kde.org> | 2015-11-06 21:53:26 +0000 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-11-06 14:05:45 -0800 |
commit | 6d3a5e6bd4e0c449eca65fa832752452cc2b92f5 (patch) | |
tree | 3297dda3515cfba3b65ab52999e61434720b9117 /qt-mobile/theme/Units.qml | |
parent | 9dc8f13a0ab2f2c0f2804b2dcaf602c2964fdddb (diff) | |
download | subsurface-6d3a5e6bd4e0c449eca65fa832752452cc2b92f5.tar.gz |
Theme tweaks
- gridUnits is dynamic again, using FontMetrics now
- Add a page to display some sizing-relevant details, so we can debug
dpi problems a bit better on Android
Signed-off-by: Sebastian Kügler <sebas@kde.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/theme/Units.qml')
-rw-r--r-- | qt-mobile/theme/Units.qml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/qt-mobile/theme/Units.qml b/qt-mobile/theme/Units.qml index 9efec3157..1d0899fbc 100644 --- a/qt-mobile/theme/Units.qml +++ b/qt-mobile/theme/Units.qml @@ -31,7 +31,7 @@ QtObject { * Given the screen has an accurate DPI settings, it corresponds to a width of * the capital letter M */ - property int gridUnit: 20 + property int gridUnit: fontMetrics.height /** * units.iconSizes provides access to platform-dependent icon sizing @@ -95,8 +95,8 @@ QtObject { */ property int shortDuration: 150 -// property QtObject fontMetrics: FontMetrics { -// //id: textSpacer -// //text: "M" -// } + property QtObject fontMetrics: FontMetrics { + //id: textSpacer + //text: "M" + } } |