Create the other frame on all platforms

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@44589 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2007-03-01 19:01:55 +00:00
parent 37a2b499e5
commit b1ea5b28ab

View File

@@ -72,15 +72,13 @@ def main(args=sys.argv):
print "Adding %s..." % helpfile print "Adding %s..." % helpfile
helpctrl.AddBook(helpfile, 1) helpctrl.AddBook(helpfile, 1)
# on Mac a menubar and About box are added for HIG compliance, but # The frame used by the HtmlHelpController is set to not prevent
# the frame used by the HtmlHelpController is set to not prevent # app exit, so in the case of a standalone helpviewer like this
# app exit. So in the case of a standalone helpviewer like this # when the about box or search box is closed the help frame will
# when the about box is closed that frame will be the only one # be the only one left and the app will close unexpectedly. To
# left and the app will close unexpectedly. To work around this # work around this we'll create another frame that is never shown,
# we'll create another frame that is never shown, but which will # but which will be closed when the helpviewer frame is closed.
# be closed when the helpviewer frame is closed. wx.CallAfter(makeOtherFrame, helpctrl)
if "wxMac" in wx.PlatformInfo:
wx.CallAfter(makeOtherFrame, helpctrl)
# start it up! # start it up!
helpctrl.DisplayContents() helpctrl.DisplayContents()