15 lines
341 B
QML
15 lines
341 B
QML
// WallpaperWidget.qml - pill that opens the wallpaper changer popup
|
|
import QtQuick
|
|
import ".."
|
|
|
|
Pill {
|
|
id: root
|
|
onClicked: GlobalStates.popups.toggle("wallpaper", mapToItem(null, width / 2, 0).x)
|
|
|
|
Text {
|
|
text: " "
|
|
font { family: Theme.fontMono; pixelSize: Theme.fontSize }
|
|
color: Theme.pillText
|
|
}
|
|
}
|