From da1081700a821e91f6d2495078a71703d30f9b9d Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Sun, 14 Sep 2025 18:15:07 -0400 Subject: [PATCH] NPill: replaced "Normal" by "On Hover" --- Modules/SettingsPanel/Bar/BarWidgetSettingsDialog.qml | 2 +- .../Bar/WidgetSettings/BatterySettings.qml | 6 +++--- .../Bar/WidgetSettings/BrightnessSettings.qml | 6 +++--- .../Bar/WidgetSettings/KeyboardLayoutSettings.qml | 6 +++--- .../Bar/WidgetSettings/MicrophoneSettings.qml | 6 +++--- .../Bar/WidgetSettings/VolumeSettings.qml | 6 +++--- Services/BarWidgetRegistry.qml | 10 +++++----- 7 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Modules/SettingsPanel/Bar/BarWidgetSettingsDialog.qml b/Modules/SettingsPanel/Bar/BarWidgetSettingsDialog.qml index 47b9aaa..3acdf94 100644 --- a/Modules/SettingsPanel/Bar/BarWidgetSettingsDialog.qml +++ b/Modules/SettingsPanel/Bar/BarWidgetSettingsDialog.qml @@ -19,7 +19,7 @@ Popup { x: (parent.width - width) * 0.5 y: (parent.height - height) * 0.5 - width: 420 * scaling + width: 500 * scaling height: content.implicitHeight + padding * 2 padding: Style.marginXL * scaling modal: true diff --git a/Modules/SettingsPanel/Bar/WidgetSettings/BatterySettings.qml b/Modules/SettingsPanel/Bar/WidgetSettings/BatterySettings.qml index 17df1ca..04b8748 100644 --- a/Modules/SettingsPanel/Bar/WidgetSettings/BatterySettings.qml +++ b/Modules/SettingsPanel/Bar/WidgetSettings/BatterySettings.qml @@ -26,12 +26,12 @@ ColumnLayout { NComboBox { label: "Display mode" - description: "Choose how the percentage is displayed." + description: "Choose how you'd like this value to appear." minimumWidth: 134 * scaling model: ListModel { ListElement { - key: "normal" - name: "Normal" + key: "onhover" + name: "On Hover" } ListElement { key: "alwaysShow" diff --git a/Modules/SettingsPanel/Bar/WidgetSettings/BrightnessSettings.qml b/Modules/SettingsPanel/Bar/WidgetSettings/BrightnessSettings.qml index 2da8fce..bb43bd8 100644 --- a/Modules/SettingsPanel/Bar/WidgetSettings/BrightnessSettings.qml +++ b/Modules/SettingsPanel/Bar/WidgetSettings/BrightnessSettings.qml @@ -24,12 +24,12 @@ ColumnLayout { NComboBox { label: "Display mode" - description: "Choose how the percentage is displayed." + description: "Choose how you'd like this value to appear." minimumWidth: 134 * scaling model: ListModel { ListElement { - key: "normal" - name: "Normal" + key: "onhover" + name: "On Hover" } ListElement { key: "alwaysShow" diff --git a/Modules/SettingsPanel/Bar/WidgetSettings/KeyboardLayoutSettings.qml b/Modules/SettingsPanel/Bar/WidgetSettings/KeyboardLayoutSettings.qml index 17cda8c..6a0c832 100644 --- a/Modules/SettingsPanel/Bar/WidgetSettings/KeyboardLayoutSettings.qml +++ b/Modules/SettingsPanel/Bar/WidgetSettings/KeyboardLayoutSettings.qml @@ -24,12 +24,12 @@ ColumnLayout { NComboBox { label: "Display mode" - description: "Choose how the keyboard layout is displayed." + description: "Choose how you'd like this value to appear." minimumWidth: 134 * scaling model: ListModel { ListElement { - key: "normal" - name: "Normal" + key: "onhover" + name: "On Hover" } ListElement { key: "forceOpen" diff --git a/Modules/SettingsPanel/Bar/WidgetSettings/MicrophoneSettings.qml b/Modules/SettingsPanel/Bar/WidgetSettings/MicrophoneSettings.qml index 2da8fce..bb43bd8 100644 --- a/Modules/SettingsPanel/Bar/WidgetSettings/MicrophoneSettings.qml +++ b/Modules/SettingsPanel/Bar/WidgetSettings/MicrophoneSettings.qml @@ -24,12 +24,12 @@ ColumnLayout { NComboBox { label: "Display mode" - description: "Choose how the percentage is displayed." + description: "Choose how you'd like this value to appear." minimumWidth: 134 * scaling model: ListModel { ListElement { - key: "normal" - name: "Normal" + key: "onhover" + name: "On Hover" } ListElement { key: "alwaysShow" diff --git a/Modules/SettingsPanel/Bar/WidgetSettings/VolumeSettings.qml b/Modules/SettingsPanel/Bar/WidgetSettings/VolumeSettings.qml index 2da8fce..bb43bd8 100644 --- a/Modules/SettingsPanel/Bar/WidgetSettings/VolumeSettings.qml +++ b/Modules/SettingsPanel/Bar/WidgetSettings/VolumeSettings.qml @@ -24,12 +24,12 @@ ColumnLayout { NComboBox { label: "Display mode" - description: "Choose how the percentage is displayed." + description: "Choose how you'd like this value to appear." minimumWidth: 134 * scaling model: ListModel { ListElement { - key: "normal" - name: "Normal" + key: "onhover" + name: "On Hover" } ListElement { key: "alwaysShow" diff --git a/Services/BarWidgetRegistry.qml b/Services/BarWidgetRegistry.qml index 1bdbcd6..4fbcd22 100644 --- a/Services/BarWidgetRegistry.qml +++ b/Services/BarWidgetRegistry.qml @@ -43,12 +43,12 @@ Singleton { }, "Battery": { "allowUserSettings": true, - "displayMode": "normal", + "displayMode": "onhover", "warningThreshold": 30 }, "Brightness": { "allowUserSettings": true, - "displayMode": "normal" + "displayMode": "onhover" }, "Clock": { "allowUserSettings": true, @@ -65,7 +65,7 @@ Singleton { }, "Microphone": { "allowUserSettings": true, - "displayMode": "normal" + "displayMode": "onhover" }, "NotificationHistory": { "allowUserSettings": true, @@ -102,11 +102,11 @@ Singleton { }, "Volume": { "allowUserSettings": true, - "displayMode": "normal" + "displayMode": "onhover" }, "KeyboardLayout": { "allowUserSettings": true, - "displayMode": "normal" + "displayMode": "onhover" } })