subsurface/qt-mobile/theme/Units.qml
Sebastian Kügler ac6b267d40 QML-UI: gridUnit is now dpi-corrected
Signed-off-by: Sebastian Kügler <sebas@kde.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2015-10-09 12:51:54 -07:00

11 lines
No EOL
146 B
QML

import QtQuick 2.3
Item {
property int gridUnit: unitsM.paintedHeight
property int spacing: gridUnit / 3
Text {
id: unitsM
text: "M"
}
}