refresh the dialog children forcefully even if wxCLIP_CHILDREN was specified
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14993 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
191edeb5fb
commit
df055cbbdc
@ -398,6 +398,14 @@ void wxDialog::OnSysColourChanged(wxSysColourChangedEvent& WXUNUSED(event))
|
|||||||
// dialog window proc
|
// dialog window proc
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
BOOL CALLBACK wxRefreshChildProc(HWND hwnd, LPARAM WXUNUSED(lParam))
|
||||||
|
{
|
||||||
|
::InvalidateRect(hwnd, NULL, FALSE /* don't erase bg */);
|
||||||
|
|
||||||
|
// continue enumeration
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
long wxDialog::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
|
long wxDialog::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
|
||||||
{
|
{
|
||||||
long rc = 0;
|
long rc = 0;
|
||||||
@ -422,7 +430,7 @@ long wxDialog::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
|
|||||||
processed = TRUE;
|
processed = TRUE;
|
||||||
if ( !HasFlag(wxNO_FULL_REPAINT_ON_RESIZE) )
|
if ( !HasFlag(wxNO_FULL_REPAINT_ON_RESIZE) )
|
||||||
{
|
{
|
||||||
Refresh();
|
::EnumChildWindows(GetHwnd(), wxRefreshChildProc, 0);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user