fix: don't try to save emote popup bounds when we're quitting (#6292)
This commit is contained in:
@@ -644,6 +644,11 @@ void EmotePopup::filterEmotes(const QString &searchText)
|
||||
|
||||
void EmotePopup::saveBounds() const
|
||||
{
|
||||
if (isAppAboutToQuit())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
auto bounds = this->getBounds();
|
||||
if (!bounds.isNull())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user