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/CloudStorage.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/CloudStorage.qml')
-rw-r--r-- | qt-mobile/qml/CloudStorage.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-mobile/qml/CloudStorage.qml b/qt-mobile/qml/CloudStorage.qml index 3b94aa5e6..897ebfcee 100644 --- a/qt-mobile/qml/CloudStorage.qml +++ b/qt-mobile/qml/CloudStorage.qml @@ -22,7 +22,7 @@ Item { Label { text: "Cloud credentials" Layout.bottomMargin: MobileComponents.Units.largeSpacing - font.pointSize: MobileComponents.Units.titlePointSize + font.pointSize: subsurfaceTheme.titlePointSize Layout.columnSpan: 2 } |