mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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
|
||
|
|
||
|
}
|
||
|
}
|