From fc7ba044ac495fd073faa5635656dda1356c92c5 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Sat, 10 Jan 2009 20:00:59 +0000 Subject: [PATCH] making sure enabling the menus works git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57988 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/osx/carbon/frame.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/osx/carbon/frame.cpp b/src/osx/carbon/frame.cpp index 5c2ada2de0..1562121569 100644 --- a/src/osx/carbon/frame.cpp +++ b/src/osx/carbon/frame.cpp @@ -99,7 +99,9 @@ bool wxFrame::Enable(bool enable) return false; #if wxUSE_MENUS - if ( m_frameMenuBar && m_frameMenuBar == wxMenuBar::MacGetInstalledMenuBar() ) + // we should always enable/disable the menubar, even if we are not current, otherwise + // we might miss some state change later (happened eg in the docview sample after PrintPreview) + if ( m_frameMenuBar /*&& m_frameMenuBar == wxMenuBar::MacGetInstalledMenuBar()*/) { int iMaxMenu = m_frameMenuBar->GetMenuCount(); for ( int i = 0 ; i < iMaxMenu ; ++ i )