Kaydet (Commit) 81a8f537 authored tarafından Caolán McNamara's avatar Caolán McNamara

Related: fdo#80633 dialog size cache has to be invalidated too

otherwise the VclExpander will have no effect

Change-Id: I039fa361d7088dfe4a6ff849623e34b27e2be26b
üst 5cc4b1dd
...@@ -1238,6 +1238,9 @@ void Dialog::queue_resize() ...@@ -1238,6 +1238,9 @@ void Dialog::queue_resize()
return; return;
if (!isLayoutEnabled()) if (!isLayoutEnabled())
return; return;
WindowImpl *pWindowImpl = mpWindowImpl->mpBorderWindow ? mpWindowImpl->mpBorderWindow->mpWindowImpl : mpWindowImpl;
pWindowImpl->mnOptimalWidthCache = -1;
pWindowImpl->mnOptimalHeightCache = -1;
maLayoutTimer.Start(); maLayoutTimer.Start();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment