mirror of https://github.com/procxx/kepka.git
Don't close send files box by outside click.
This commit is contained in:
parent
bfae205fbe
commit
ca6a331a26
|
@ -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…
Reference in New Issue