fix: don't try to save emote popup bounds when we're quitting (#6292)

This commit is contained in:
pajlada
2025-06-22 16:04:06 +02:00
committed by GitHub
parent 4c08a9bf26
commit 3ba42bd91b
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -644,6 +644,11 @@ void EmotePopup::filterEmotes(const QString &searchText)
void EmotePopup::saveBounds() const
{
if (isAppAboutToQuit())
{
return;
}
auto bounds = this->getBounds();
if (!bounds.isNull())
{