OSD: moved settings in the appropriate spot

This commit is contained in:
ItsLemmy
2025-09-23 12:40:40 -04:00
parent 4cd53c4083
commit 6d4ca4ffc0
4 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -294,7 +294,7 @@ Loader {
function showOSD() {
// Check if OSD is enabled in settings
if (!Settings.data.general.showOSD) {
if (!Settings.data.notifications.enableOSD) {
return
}
+2 -2
View File
@@ -42,8 +42,8 @@ ColumnLayout {
NToggle {
label: "Enable on screen display"
description: "Show volume and brightness changes in real-time."
checked: Settings.data.general.showOSD
onToggled: checked => Settings.data.general.showOSD = checked
checked: Settings.data.notifications.enableOSD
onToggled: checked => Settings.data.notifications.enableOSD = checked
}
NComboBox {