mirror of https://github.com/procxx/kepka.git
Fix stickers and emoji render.
This commit is contained in:
parent
9da4bd671e
commit
51d350c356
|
@ -263,6 +263,7 @@ QImage EmojiImageLoader::prepare(const IsolatedEmoji &emoji) {
|
||||||
auto result = QImage(
|
auto result = QImage(
|
||||||
CalculateSize(emoji),
|
CalculateSize(emoji),
|
||||||
QImage::Format_ARGB32_Premultiplied);
|
QImage::Format_ARGB32_Premultiplied);
|
||||||
|
const auto factor = cIntRetinaFactor();
|
||||||
result.fill(Qt::transparent);
|
result.fill(Qt::transparent);
|
||||||
{
|
{
|
||||||
QPainter p(&result);
|
QPainter p(&result);
|
||||||
|
@ -275,9 +276,9 @@ QImage EmojiImageLoader::prepare(const IsolatedEmoji &emoji) {
|
||||||
_images->draw(
|
_images->draw(
|
||||||
p,
|
p,
|
||||||
single,
|
single,
|
||||||
st::largeEmojiSize * cIntRetinaFactor(),
|
st::largeEmojiSize * factor,
|
||||||
x,
|
x * factor,
|
||||||
y);
|
y * factor);
|
||||||
x += st::largeEmojiSize + st::largeEmojiSkip;
|
x += st::largeEmojiSize + st::largeEmojiSkip;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,6 +14,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "history/history_item.h"
|
#include "history/history_item.h"
|
||||||
#include "history/view/history_view_element.h"
|
#include "history/view/history_view_element.h"
|
||||||
#include "history/view/history_view_cursor_state.h"
|
#include "history/view/history_view_cursor_state.h"
|
||||||
|
#include "history/view/media/history_view_media_common.h"
|
||||||
#include "ui/image/image.h"
|
#include "ui/image/image.h"
|
||||||
#include "ui/emoji_config.h"
|
#include "ui/emoji_config.h"
|
||||||
#include "main/main_session.h"
|
#include "main/main_session.h"
|
||||||
|
@ -59,6 +60,10 @@ QSize Sticker::size() {
|
||||||
return int(size * st::maxStickerSize * zoom / kIdealStickerSize);
|
return int(size * st::maxStickerSize * zoom / kIdealStickerSize);
|
||||||
};
|
};
|
||||||
_size = QSize(convert(_size.width()), convert(_size.height()));
|
_size = QSize(convert(_size.width()), convert(_size.height()));
|
||||||
|
} else {
|
||||||
|
_size = DownscaledSize(
|
||||||
|
_size,
|
||||||
|
{ st::maxStickerSize, st::maxStickerSize });
|
||||||
}
|
}
|
||||||
return _size;
|
return _size;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue