mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-06 15:13:57 +02:00
Don't close send files box by outside click.
This commit is contained in:
parent
bfae205fbe
commit
ca6a331a26
1 changed files with 3 additions and 1 deletions
|
@ -4250,7 +4250,9 @@ bool HistoryWidget::confirmSendingFiles(
|
||||||
}));
|
}));
|
||||||
|
|
||||||
ActivateWindowDelayed(controller());
|
ActivateWindowDelayed(controller());
|
||||||
Ui::show(std::move(box));
|
const auto shown = Ui::show(std::move(box));
|
||||||
|
shown->setCloseByOutsideClick(false);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue