add a back button

This commit is contained in:
Marco Martin 2017-09-14 21:50:37 +02:00
parent e1ce3744ae
commit 6cebe54981

View file

@ -293,6 +293,17 @@ PlasmaCore.ColorScope {
width: panelContents.width
height: panelContents.height
}
PlasmaComponents.ToolButton {
anchors {
left: fullRepsLayout.left
right: fullRepsLayout.right
bottom: parent.bottom
bottomMargin: root.height
}
text: i18n("Back")
iconName: "go-previous"
onClicked: slidingPanel.expanded = false;
}
}
}
}