diff options
author | Sebastian Kügler <sebas@kde.org> | 2015-11-29 19:21:27 +0100 |
---|---|---|
committer | Sebastian Kügler <sebas@kde.org> | 2015-11-29 19:22:10 +0100 |
commit | 6580f078d0ae1d912d9a6b12e2769060b4c77f4b (patch) | |
tree | 9906d50affe244b938b45f395076d8ba19325a2b /qt-mobile/qml/DiveDetails.qml | |
parent | 8fad349c82b0f681d6daa95bcfe843e806b48dd7 (diff) | |
download | subsurface-6580f078d0ae1d912d9a6b12e2769060b4c77f4b.tar.gz |
Fix reference errors caused by moving properties around
This makes things like accent(Text)Color and our two custom point sizes
for fonts resolve correctly again.
Signed-off-by: Sebastian Kügler <sebas@kde.org>
Diffstat (limited to 'qt-mobile/qml/DiveDetails.qml')
-rw-r--r-- | qt-mobile/qml/DiveDetails.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-mobile/qml/DiveDetails.qml b/qt-mobile/qml/DiveDetails.qml index 5b597a0df..401921c9f 100644 --- a/qt-mobile/qml/DiveDetails.qml +++ b/qt-mobile/qml/DiveDetails.qml @@ -44,7 +44,7 @@ Item { Label { Layout.columnSpan: 2 - font.pointSize: MobileComponents.Units.titlePointSize + font.pointSize: subsurfaceTheme.titlePointSize text: "Dive " + number + " (" + date + ")" } |