diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2021-11-19 01:42:54 +0100 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2021-11-19 13:14:06 +0100 |
commit | 7e21785380f39f0fe53e06bafa3e5395f7f6e8b6 (patch) | |
tree | b36096dbed35ed0bc0403f947e1baacf1b3ed576 /sfx2 | |
parent | de5bf7f88026310866a5a4901ac1b46424a73571 (diff) |
Change About LO dialog to run async
Change-Id: I7255a8510e4cf983ebab477cbdb7cdcf00dabc98
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125512
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/appserv.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/appl/appserv.cxx b/sfx2/source/appl/appserv.cxx index 816dfa668d69..b8c80823daf3 100644 --- a/sfx2/source/appl/appserv.cxx +++ b/sfx2/source/appl/appserv.cxx @@ -632,7 +632,7 @@ void SfxApplication::MiscExec_Impl( SfxRequest& rReq ) { SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create(); ScopedVclPtr<VclAbstractDialog> pDlg(pFact->CreateAboutDialog(rReq.GetFrameWeld())); - pDlg->Execute(); + pDlg->StartExecuteAsync(nullptr); bDone = true; break; } |