- 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>
16 lines
211 B
QML
16 lines
211 B
QML
import QtQuick 2.5
|
|
import QtQuick.Layouts 1.1
|
|
|
|
ColumnLayout {
|
|
id: themetest
|
|
|
|
Text {
|
|
text: "units.gridUnit is: " + units.gridUnit
|
|
}
|
|
|
|
Text {
|
|
text: "units.devicePixelRatio: " + units.devicePixelRatio
|
|
|
|
}
|
|
}
|