2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-09-05 08:55:59 +00:00

Don't unload emoji sets.

Fixes #24933.
This commit is contained in:
John Preston
2022-08-15 15:40:11 +03:00
parent e05f570e1a
commit 2c0a38d356
7 changed files with 21 additions and 19 deletions

View File

@@ -972,10 +972,10 @@ void SendFilesBox::updateControlsGeometry() {
}
void SendFilesBox::setInnerFocus() {
if (!_caption || _caption->isHidden()) {
setFocus();
} else {
if (_caption && !_caption->isHidden()) {
_caption->setFocusFast();
} else {
BoxContent::setInnerFocus();
}
}