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

View File

@ -72,12 +72,13 @@ export default {
"icon": "MdSlowMotionVideo",
"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.",
"emitEvent": "app.lowPerformanceMode"
"emitEvent": "app.lowPerformanceMode",
disabled: true,
},
{
id: "ui.effects",
storaged: true,
group: "ui_sounds",
group: "ui.sounds",
component: "Switch",
icon: "MdVolumeUp",
title: "UI effects",
@ -86,7 +87,7 @@ export default {
{
id: "ui.general_volume",
storaged: true,
group: "ui_sounds",
group: "ui.sounds",
component: "Slider",
icon: "MdVolumeUp",
title: "UI volume",

View File

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