mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-22 13:37:23 +00:00
feat: animations on by default
This commit is contained in:
parent
e40dbe02a7
commit
ad08b45041
@ -130,7 +130,7 @@ export default {
|
|||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
enableAnimations(_this) {
|
enableAnimations(_this) {
|
||||||
return !_this.getPreferenceBoolean("disableAnimations", true);
|
return !_this.getPreferenceBoolean("disableAnimations", false);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -87,7 +87,7 @@ export default {
|
|||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
enableAnimations(_this) {
|
enableAnimations(_this) {
|
||||||
return !_this.getPreferenceBoolean("disableAnimations", true);
|
return !_this.getPreferenceBoolean("disableAnimations", false);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -283,7 +283,7 @@ export default {
|
|||||||
enabledCodecs: ["av1", "vp9", "avc"],
|
enabledCodecs: ["av1", "vp9", "avc"],
|
||||||
disableLBRY: false,
|
disableLBRY: false,
|
||||||
proxyLBRY: false,
|
proxyLBRY: false,
|
||||||
disableAnimations: true,
|
disableAnimations: false,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
activated() {
|
activated() {
|
||||||
@ -372,7 +372,7 @@ export default {
|
|||||||
this.enabledCodecs = this.getPreferenceString("enabledCodecs", "av1,vp9,avc").split(",");
|
this.enabledCodecs = this.getPreferenceString("enabledCodecs", "av1,vp9,avc").split(",");
|
||||||
this.disableLBRY = this.getPreferenceBoolean("disableLBRY", false);
|
this.disableLBRY = this.getPreferenceBoolean("disableLBRY", false);
|
||||||
this.proxyLBRY = this.getPreferenceBoolean("proxyLBRY", false);
|
this.proxyLBRY = this.getPreferenceBoolean("proxyLBRY", false);
|
||||||
this.disableAnimations = this.getPreferenceBoolean("disableAnimations", true);
|
this.disableAnimations = this.getPreferenceBoolean("disableAnimations", false);
|
||||||
if (this.selectedLanguage != "en") {
|
if (this.selectedLanguage != "en") {
|
||||||
try {
|
try {
|
||||||
this.CountryMap = await import("@/utils/CountryMaps/" + this.selectedLanguage + ".json").then(
|
this.CountryMap = await import("@/utils/CountryMaps/" + this.selectedLanguage + ".json").then(
|
||||||
|
Loading…
Reference in New Issue
Block a user