move signal strength in indicators

This commit is contained in:
Marco Martin 2019-10-07 13:16:50 +02:00
parent 851d17a03d
commit 69c0edd704
2 changed files with 3 additions and 1 deletions

View file

@ -147,7 +147,7 @@ PlasmaCore.ColorScope {
id: strengthLoader
height: parent.height
width: item ? item.width : 0
source: Qt.resolvedUrl("SignalStrength.qml")
source: Qt.resolvedUrl("indicators/SignalStrength.qml")
}
Row {
@ -245,6 +245,8 @@ PlasmaCore.ColorScope {
property var applet
implicitHeight: applet ? applet.fullRepresentationItem.Layout.maximumHeight : 0
property int minimumHeight: applet ? applet.fullRepresentationItem.Layout.minimumHeight : 0
//TODO implicitHeight: applet ? applet.switchHeight : 0
}
}
}