From ad08b4504174756ab74b9e7401c7f32ccc4961fa Mon Sep 17 00:00:00 2001 From: Filipe Medeiros Date: Tue, 12 Oct 2021 18:34:19 +0100 Subject: [PATCH] feat: animations on by default --- src/components/MenuDesktop.vue | 2 +- src/components/MenuMobile.vue | 2 +- src/components/Preferences.vue | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/MenuDesktop.vue b/src/components/MenuDesktop.vue index 4a2966c6..b5e83335 100644 --- a/src/components/MenuDesktop.vue +++ b/src/components/MenuDesktop.vue @@ -130,7 +130,7 @@ export default { }, computed: { enableAnimations(_this) { - return !_this.getPreferenceBoolean("disableAnimations", true); + return !_this.getPreferenceBoolean("disableAnimations", false); }, }, }; diff --git a/src/components/MenuMobile.vue b/src/components/MenuMobile.vue index 098cf68b..eacc8388 100644 --- a/src/components/MenuMobile.vue +++ b/src/components/MenuMobile.vue @@ -87,7 +87,7 @@ export default { }, computed: { enableAnimations(_this) { - return !_this.getPreferenceBoolean("disableAnimations", true); + return !_this.getPreferenceBoolean("disableAnimations", false); }, }, }; diff --git a/src/components/Preferences.vue b/src/components/Preferences.vue index 228e3b6a..cd942457 100644 --- a/src/components/Preferences.vue +++ b/src/components/Preferences.vue @@ -283,7 +283,7 @@ export default { enabledCodecs: ["av1", "vp9", "avc"], disableLBRY: false, proxyLBRY: false, - disableAnimations: true, + disableAnimations: false, }; }, activated() { @@ -372,7 +372,7 @@ export default { this.enabledCodecs = this.getPreferenceString("enabledCodecs", "av1,vp9,avc").split(","); this.disableLBRY = this.getPreferenceBoolean("disableLBRY", false); this.proxyLBRY = this.getPreferenceBoolean("proxyLBRY", false); - this.disableAnimations = this.getPreferenceBoolean("disableAnimations", true); + this.disableAnimations = this.getPreferenceBoolean("disableAnimations", false); if (this.selectedLanguage != "en") { try { this.CountryMap = await import("@/utils/CountryMaps/" + this.selectedLanguage + ".json").then(