summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-11-22 11:34:00 +0000
committerCaolán McNamara <caolanm@redhat.com>2018-11-22 15:49:31 +0100
commit17983e15c468d2153a58a20ad6ad51553d087472 (patch)
treed6ff24d5cbae387e166798776b939df982aab78b /sw
parente64fab3fa8f82fc3a0bedbf204a59884e80ecf11 (diff)
tdf#121607 defer other requests until password dialog is dismissed
Change-Id: I82b308f482cc5eb40a00afd01a6848afc3fb8ab1 Reviewed-on: https://gerrit.libreoffice.org/63795 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/uibase/app/apphdl.cxx21
1 files changed, 21 insertions, 0 deletions
diff --git a/sw/source/uibase/app/apphdl.cxx b/sw/source/uibase/app/apphdl.cxx
index 46b350c02c59..a0aead88a3ea 100644
--- a/sw/source/uibase/app/apphdl.cxx
+++ b/sw/source/uibase/app/apphdl.cxx
@@ -185,9 +185,27 @@ void SwModule::StateOther(SfxItemSet &rSet)
{
SwView* pView = ::GetActiveView();
std::shared_ptr<SwMailMergeConfigItem> xConfigItem;
+ bool bUnLockDispatcher = false;
+ SfxDispatcher* pDispatcher = nullptr;
if (pView)
+ {
xConfigItem = pView->EnsureMailMergeConfigItem();
+ // tdf#121607 lock the dispatcher while processing
+ // this request, and release it afterwards,
+ // that means that if this request pops up a dialog
+ // any other pending requests will be deferred
+ // until this request is finished, i.e. they won't
+ // be dispatched by the dispatcher timeout until
+ // unlock is called, serializing the password dialogs
+ pDispatcher = pView->GetViewFrame()->GetDispatcher();
+ if (!pDispatcher->IsLocked())
+ {
+ pDispatcher->Lock(true);
+ bUnLockDispatcher = true;
+ }
+ }
+
// #i51949# hide e-Mail option if e-Mail is not supported
// #i63267# printing might be disabled
if (!xConfigItem ||
@@ -199,6 +217,9 @@ void SwModule::StateOther(SfxItemSet &rSet)
{
rSet.DisableItem(nWhich);
}
+
+ if (bUnLockDispatcher)
+ pDispatcher->Lock(false);
}
break;
default: