mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Also use emote scale setting to help figure out what version emote to use
This commit is contained in:
parent
5b23aff58d
commit
64669879ad
|
@ -58,6 +58,10 @@ const ImagePtr &ImageSet::getImage3() const
|
||||||
|
|
||||||
const ImagePtr &ImageSet::getImage(float scale) const
|
const ImagePtr &ImageSet::getImage(float scale) const
|
||||||
{
|
{
|
||||||
|
auto emoteScale = getSettings()->emoteScale.getValue();
|
||||||
|
|
||||||
|
scale += emoteScale - 1.f;
|
||||||
|
|
||||||
int quality = 1;
|
int quality = 1;
|
||||||
|
|
||||||
if (scale > 2.999)
|
if (scale > 2.999)
|
||||||
|
|
Loading…
Reference in a new issue