# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1303903761 0 # Node ID 18f194e1d71df53ebe5a7a69675fb7fc6ad3b1fb # Parent b5ae9cf15f688304a95a44a8d0ab25af6f4c6dfe dw_window_redraw() should relayout the window in addition to flushing the buffer on Mac. diff -r b5ae9cf15f68 -r 18f194e1d71d mac/dw.m --- a/mac/dw.m Wed Apr 27 09:59:14 2011 +0000 +++ b/mac/dw.m Wed Apr 27 11:29:21 2011 +0000 @@ -7463,6 +7463,7 @@ void API dw_window_redraw(HWND handle) { NSWindow *window = handle; + [[window contentView] showWindow]; [window flushWindow]; }