# HG changeset patch # User ib # Date 1318855052 0 # Node ID 7777da659cbe76d1d0fbae518aec65c5dedb001d # Parent 178c5660c090f3cc25089eb0a95ce71466f0aa59 Fix bug in wsResizeWindow(). Map the window again, if it previously has been unmapped. This fixes a bug occurring with olvwm. diff -r 178c5660c090 -r 7777da659cbe gui/wm/ws.c --- a/gui/wm/ws.c Mon Oct 17 10:48:20 2011 +0000 +++ b/gui/wm/ws.c Mon Oct 17 12:37:32 2011 +0000 @@ -1189,6 +1189,9 @@ if (win->ReSize) win->ReSize(win->X, win->Y, win->Width, win->Height); + + if (vo_wm_type == 0) + XMapWindow(wsDisplay, win->WindowID); } // ----------------------------------------------------------------------------------------------