🔧 Disabled not working settings

This commit is contained in:
SrGooglo 2023-05-09 22:58:20 +00:00
parent a2351cd728
commit ec05158cb6
3 changed files with 21 additions and 12 deletions

View File

@ -29,6 +29,7 @@ export default {
icon: "MdOutlineSlowMotionVideo", icon: "MdOutlineSlowMotionVideo",
title: "Reduce animations", title: "Reduce animations",
experimental: true, experimental: true,
disabled: true,
storaged: true, storaged: true,
}, },
{ {
@ -162,15 +163,18 @@ export default {
}, },
storaged: false, storaged: false,
}, },
{ // {
id: "style.parallaxBackground", // id: "style.parallaxBackground",
group: "aspect", // group: "aspect",
component: "Switch", // component: "Switch",
icon: "MdOutline3DRotation", // icon: "MdOutline3DRotation",
title: "Parallax background", // title: "Parallax background",
description: "Create a parallax effect on the background.", // description: "Create a parallax effect on the background.",
storaged: true, // dependsOn: {
}, // "style.backgroundImage": true
// },
// storaged: true,
// },
{ {
id: "style.backgroundImage", id: "style.backgroundImage",
group: "aspect", group: "aspect",

View File

@ -72,12 +72,13 @@ export default {
"icon": "MdSlowMotionVideo", "icon": "MdSlowMotionVideo",
"title": "Low performance mode", "title": "Low performance mode",
"description": "Enable low performance mode to reduce the memory usage and improve the performance in low-end devices. This will disable some animations and other decorative features.", "description": "Enable low performance mode to reduce the memory usage and improve the performance in low-end devices. This will disable some animations and other decorative features.",
"emitEvent": "app.lowPerformanceMode" "emitEvent": "app.lowPerformanceMode",
disabled: true,
}, },
{ {
id: "ui.effects", id: "ui.effects",
storaged: true, storaged: true,
group: "ui_sounds", group: "ui.sounds",
component: "Switch", component: "Switch",
icon: "MdVolumeUp", icon: "MdVolumeUp",
title: "UI effects", title: "UI effects",
@ -86,7 +87,7 @@ export default {
{ {
id: "ui.general_volume", id: "ui.general_volume",
storaged: true, storaged: true,
group: "ui_sounds", group: "ui.sounds",
component: "Slider", component: "Slider",
icon: "MdVolumeUp", icon: "MdVolumeUp",
title: "UI volume", title: "UI volume",

View File

@ -50,5 +50,9 @@
"sync.accounts": { "sync.accounts": {
"title": "Synced Accounts", "title": "Synced Accounts",
"icon": "MdLinearScale" "icon": "MdLinearScale"
},
"ui.sounds": {
"title": "UI Sounds",
"icon": "Volume2"
} }
} }