1.9.8
This commit is contained in:
parent
3e49d7e2d6
commit
3f45cfde83
|
@ -11,6 +11,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- FixDirLinkErr (thanks lmou523) [#3038](https://github.com/sandboxie-plus/Sandboxie/pull/3038)
|
- FixDirLinkErr (thanks lmou523) [#3038](https://github.com/sandboxie-plus/Sandboxie/pull/3038)
|
||||||
|
- Recovery window focus issue after file overwrite dialog [#3048}(https://github.com/sandboxie-plus/Sandboxie/issues/3048)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2506,11 +2506,7 @@ void CSandMan::OnQueuedRequest(quint32 ClientPid, quint32 ClientTid, quint32 Req
|
||||||
|
|
||||||
int CSandMan::ShowQuestion(const QString& question, const QString& checkBoxText, bool* checkBoxSetting, int buttons, int defaultButton, int type, QWidget* pParent)
|
int CSandMan::ShowQuestion(const QString& question, const QString& checkBoxText, bool* checkBoxSetting, int buttons, int defaultButton, int type, QWidget* pParent)
|
||||||
{
|
{
|
||||||
int ret = CCheckableMessageBox::question(pParent, "Sandboxie-Plus", question, checkBoxText, checkBoxSetting, (QDialogButtonBox::StandardButtons)buttons, (QDialogButtonBox::StandardButton)defaultButton, (QMessageBox::Icon)type);
|
return CCheckableMessageBox::question(pParent, "Sandboxie-Plus", question, checkBoxText, checkBoxSetting, (QDialogButtonBox::StandardButtons)buttons, (QDialogButtonBox::StandardButton)defaultButton, (QMessageBox::Icon)type);
|
||||||
QTimer::singleShot(10, [this]() {
|
|
||||||
this->raise();
|
|
||||||
});
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void CSandMan::ShowMessage(const QString& message, int type)
|
void CSandMan::ShowMessage(const QString& message, int type)
|
||||||
|
|
Loading…
Reference in New Issue