Fix spacing
This commit is contained in:
@@ -1405,8 +1405,8 @@ Item {
|
|||||||
|
|
||||||
component WorkspacesModule: GridLayout {
|
component WorkspacesModule: GridLayout {
|
||||||
columns: root.vertical ? 1 : root.workspaceIds().length
|
columns: root.vertical ? 1 : root.workspaceIds().length
|
||||||
columnSpacing: root.vertical ? 0 : 3
|
columnSpacing: root.vertical ? 0 : 2
|
||||||
rowSpacing: root.vertical ? 3 : 0
|
rowSpacing: root.vertical ? 2 : 0
|
||||||
|
|
||||||
Repeater {
|
Repeater {
|
||||||
model: root.workspaceIds()
|
model: root.workspaceIds()
|
||||||
@@ -1422,7 +1422,7 @@ Item {
|
|||||||
opacity: occupied || modelData <= 5 || focused ? 1 : 0.5
|
opacity: occupied || modelData <= 5 || focused ? 1 : 0.5
|
||||||
horizontalMargin: 6
|
horizontalMargin: 6
|
||||||
verticalPadding: 6
|
verticalPadding: 6
|
||||||
fixedWidth: root.vertical ? root.barSize : 24
|
fixedWidth: root.vertical ? root.barSize : 22
|
||||||
fixedHeight: root.barSize
|
fixedHeight: root.barSize
|
||||||
onPressed: function() { root.focusWorkspace(modelData) }
|
onPressed: function() { root.focusWorkspace(modelData) }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -174,7 +174,7 @@ Item {
|
|||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
bar: root.bar
|
bar: root.bar
|
||||||
text: root.outputIcon()
|
text: root.outputIcon()
|
||||||
fontSize: 14
|
fontSize: 12
|
||||||
tooltipText: root.sink ? root.nodeLabel(root.sink) + " · " + Math.round(root.outputVolume * 100) + "%" : "No audio"
|
tooltipText: root.sink ? root.nodeLabel(root.sink) + " · " + Math.round(root.outputVolume * 100) + "%" : "No audio"
|
||||||
|
|
||||||
onPressed: function(b) {
|
onPressed: function(b) {
|
||||||
|
|||||||
@@ -144,7 +144,7 @@ Item {
|
|||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
bar: root.bar
|
bar: root.bar
|
||||||
text: ""
|
text: ""
|
||||||
fontSize: 14
|
fontSize: 12
|
||||||
tooltipText: "Quick Settings"
|
tooltipText: "Quick Settings"
|
||||||
onPressed: function() { root.popupOpen = !root.popupOpen }
|
onPressed: function() { root.popupOpen = !root.popupOpen }
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user