will not affect high dpi

This commit is contained in:
booploops 2022-07-07 02:52:53 -07:00
parent 6cb95f2d10
commit 62688546ee

View file

@ -79,7 +79,7 @@
}, },
watch: { watch: {
windowRelativeScale: function (newValue, oldValue) { windowRelativeScale: function (newValue, oldValue) {
this.swapImage(newScale) this.swapImage(newValue)
} }
}, },
mounted() { mounted() {
@ -88,7 +88,7 @@
}, },
methods: { methods: {
swapImage(newValue) { swapImage(newValue) {
if(!this.upscaling) return if(!this.upscaling || window.devicePixelRatio !== 1) return
if (newValue > 1.5) { if (newValue > 1.5) {
this.imgSrc = app.getMediaItemArtwork(this.url, parseInt(this.size * 2.0), parseInt(this.size * 2.0)); this.imgSrc = app.getMediaItemArtwork(this.url, parseInt(this.size * 2.0), parseInt(this.size * 2.0));
} }