changeset 941:18f194e1d71d

dw_window_redraw() should relayout the window in addition to flushing the buffer on Mac.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Wed, 27 Apr 2011 11:29:21 +0000
parents b5ae9cf15f68
children 3c9dfb004df6
files mac/dw.m
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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];
 }