14 lines
323 B
QML
14 lines
323 B
QML
import QtQuick
|
|
import "." as M
|
|
import "../services" as S
|
|
|
|
M.BarModule {
|
|
id: root
|
|
tooltip: S.DockState.open ? "Close dock" : "Open dock"
|
|
onTapped: S.DockState.toggle()
|
|
|
|
M.BarIcon {
|
|
icon: S.DockState.open ? "\uDB80\uDD8B" : "\uDB80\uDD89"
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|