diff --git a/packages/app/constants/settings/apparence/index.jsx b/packages/app/constants/settings/apparence/index.jsx index 3ea675c5..be5b2e3d 100755 --- a/packages/app/constants/settings/apparence/index.jsx +++ b/packages/app/constants/settings/apparence/index.jsx @@ -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", diff --git a/packages/app/constants/settings/general/index.jsx b/packages/app/constants/settings/general/index.jsx index 5442f34d..57035c2a 100755 --- a/packages/app/constants/settings/general/index.jsx +++ b/packages/app/constants/settings/general/index.jsx @@ -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", diff --git a/packages/app/constants/settingsGroupsDecorators.json b/packages/app/constants/settingsGroupsDecorators.json index 2b4e3c8a..cec1bbc2 100755 --- a/packages/app/constants/settingsGroupsDecorators.json +++ b/packages/app/constants/settingsGroupsDecorators.json @@ -50,5 +50,9 @@ "sync.accounts": { "title": "Synced Accounts", "icon": "MdLinearScale" + }, + "ui.sounds": { + "title": "UI Sounds", + "icon": "Volume2" } } \ No newline at end of file