Revert "Provide better scaling"

This reverts commit 3ea8d9ffb7.
This commit is contained in:
David Heinemeier Hansson
2026-05-22 17:41:30 +02:00
parent bbdf873aec
commit b5079bdbad
13 changed files with 70 additions and 116 deletions
-1
View File
@@ -625,7 +625,6 @@ Panel {
bar: root.bar
text: root.outputIcon()
fontSize: Style.font.body
horizontalMargin: 5
onPressed: function(b) {
if (b === Qt.RightButton) root.toggleOutputMute()
else root.toggle()
-1
View File
@@ -459,7 +459,6 @@ Panel {
anchors.fill: parent
bar: root.bar
text: root.icon
horizontalMargin: 5
onPressed: function(b) {
if (b === Qt.RightButton) root.toggleBluetooth()
else if (b === Qt.MiddleButton) root.bar.run("omarchy-launch-bluetooth")
-1
View File
@@ -357,7 +357,6 @@ Panel {
bar: root.bar
text: root.displays.length > 1 ? "󰍺" : "󰍹"
fontSize: Style.font.subtitle
horizontalMargin: 5
onPressed: function(b) { root.toggle() }
onWheelMoved: function(delta) {
if (root.brightnessAvailable) root.setBrightness(root.brightnessPercent + (delta > 0 ? 5 : -5))
+2 -1
View File
@@ -644,7 +644,8 @@ Panel {
anchors.fill: parent
bar: root.bar
text: root.icon
horizontalMargin: 5
horizontalMargin: 8.5
rightExtraMargin: 2
onPressed: function(b) {
if (root.opened) root.close()
+2 -1
View File
@@ -259,7 +259,8 @@ Panel {
anchors.fill: parent
bar: root.bar
text: root.batteryIcon()
horizontalMargin: 5
horizontalMargin: 8.5
rightExtraMargin: 2
active: UPower.displayDevice && UPower.displayDevice.percentage <= 0.2 && UPower.onBattery
tooltipText: ""
onPressed: function(b) { root.toggle() }