2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 06:35:14 +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();
}
}