diff --git a/mobile/app/package/contents/ui/TreeDelegate.qml b/mobile/app/package/contents/ui/TreeDelegate.qml --- a/mobile/app/package/contents/ui/TreeDelegate.qml +++ b/mobile/app/package/contents/ui/TreeDelegate.qml @@ -54,7 +54,7 @@ width: Kirigami.Units.iconSizes.small height: width anchors.verticalCenter: parent.verticalCenter - x: units.largeSpacing + x: Kirigami.Units.largeSpacing } Label { id: label @@ -64,7 +64,7 @@ } //there isn't a sane way to do a dotted line in QML Rectangle { - color: theme.textColor + color: Kirigami.Theme.textColor opacity: 0.3 height: 1 anchors { @@ -78,7 +78,7 @@ text: pageLabel ? pageLabel : page anchors.right: parent.right verticalAlignment: Text.AlignBottom - anchors.rightMargin: units.largeSpacing + anchors.rightMargin: Kirigami.Units.largeSpacing } } Column {