diff options
-rw-r--r-- | sc/source/ui/view/gridwin4.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/source/ui/view/gridwin4.cxx b/sc/source/ui/view/gridwin4.cxx index e1d582c59daf..1f82d64e0c53 100644 --- a/sc/source/ui/view/gridwin4.cxx +++ b/sc/source/ui/view/gridwin4.cxx @@ -342,6 +342,10 @@ void ScGridWindow::Paint( const Rectangle& rRect ) return; } + // #i117893# If GetSizePixel needs to call the resize handler, the resulting nested Paint call + // (possibly for a larger rectangle) has to be allowed. Call GetSizePixel before setting bIsInPaint. + GetSizePixel(); + if (bIsInPaint) return; |