summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2020-03-25 14:08:14 +0100
committerXisco Faulí <xiscofauli@libreoffice.org>2020-03-25 17:48:57 +0100
commitdc78bbbdbe5aa3a7304607876231e01f17878eab (patch)
treecd89cb0afdaa0cabe84bfa04cc1cd76f18c21ba7 /vcl
parentddcdf14bf6c771e82ffb0fbae3025610892887a1 (diff)
tdf#131280 Fix endless invalidation loop on documents with form controls
Restores a condition which was removed in 8de98e61fbc96bf523b3dec7e1e52eb7e2d7693e Change-Id: I68a9f8a362d2ded9975e7c73e2a0533aa5ad9e94 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91053 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> (cherry picked from commit 4af18ebae9d74b43fcd114d5fa5b145586651bc2) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90957 Reviewed-by: Xisco Faulí <xiscofauli@libreoffice.org>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/window2.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/window2.cxx b/vcl/source/window/window2.cxx
index 6f32ea52eafd..9183ded20184 100644
--- a/vcl/source/window/window2.cxx
+++ b/vcl/source/window/window2.cxx
@@ -1335,7 +1335,7 @@ void Window::queue_resize(StateChangedType eReason)
if (VclPtr<vcl::Window> pParent = GetParentWithLOKNotifier())
{
- if (!pParent->IsInInitShow())
+ if (GetParentDialog() && !pParent->IsInInitShow())
LogicInvalidate(nullptr);
}
}