mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Fix selecting incorrect image (#659)
This commit is contained in:
parent
44f5a15da3
commit
b3fd278c3c
|
@ -76,7 +76,7 @@ const ImagePtr &ImageSet::getImage(float scale) const
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!this->imageX2_->isEmpty() && quality == 2) {
|
if (!this->imageX2_->isEmpty() && quality == 2) {
|
||||||
return this->imageX3_;
|
return this->imageX2_;
|
||||||
}
|
}
|
||||||
|
|
||||||
return this->imageX1_;
|
return this->imageX1_;
|
||||||
|
|
Loading…
Reference in a new issue