summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel
diff options
context:
space:
mode:
authorRichard Moe Gustavsen <richard.gustavsen@nokia.com>2009-08-04 13:59:25 (GMT)
committerRichard Moe Gustavsen <richard.gustavsen@nokia.com>2009-08-05 08:03:46 (GMT)
commitdecc287134139c61da5610afc060a6ca8d09f368 (patch)
tree0e4119380fac7c55fd30f91031a8767e0de0af06 /src/gui/kernel
parent7e8e53cded4622ac35ff115e26e074de6722d1a0 (diff)
downloadQt-decc287134139c61da5610afc060a6ca8d09f368.zip
Qt-decc287134139c61da5610afc060a6ca8d09f368.tar.gz
Qt-decc287134139c61da5610afc060a6ca8d09f368.tar.bz2
Cocoa: Menus show old selected values.
We never told Cocoa that it needed to redraw the window view when a window was shown. This is implicit if the window is shown for the first time, but needs to be done explicit if you hide and show it again. Task-number: 254672 Reviewed-by: bnilsen
Diffstat (limited to 'src/gui/kernel')
-rw-r--r--src/gui/kernel/qwidget_mac.mm6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gui/kernel/qwidget_mac.mm b/src/gui/kernel/qwidget_mac.mm
index 8913c89..057df81 100644
--- a/src/gui/kernel/qwidget_mac.mm
+++ b/src/gui/kernel/qwidget_mac.mm
@@ -3249,6 +3249,12 @@ void QWidgetPrivate::show_sys()
#ifndef QT_MAC_USE_COCOA
SizeWindow(window, q->width(), q->height(), true);
#endif
+
+#ifdef QT_MAC_USE_COCOA
+ // Make sure that we end up sending a repaint event to
+ // the widget if the window has been visible one before:
+ [qt_mac_get_contentview_for(window) setNeedsDisplay:YES];
+#endif
if(qt_mac_is_macsheet(q)) {
qt_event_request_showsheet(q);
} else if(qt_mac_is_macdrawer(q)) {