More changes to attempt to get the menubar back on exit. Without success:-(

This commit is contained in:
Jack Jansen 2001-02-17 22:02:07 +00:00
parent fab7415831
commit 657ba27dde
2 changed files with 14 additions and 2 deletions

View file

@ -552,6 +552,8 @@ Py_Main(argc, argv)
void
PyMac_OutputSeen()
{
if ( console_output_state == STATE_UNKNOWN )
PyMac_InitMenuBar();
console_output_state = STATE_LASTREAD;
}
@ -561,6 +563,8 @@ PyMac_OutputSeen()
void
PyMac_OutputNotSeen()
{
if ( console_output_state == STATE_UNKNOWN )
PyMac_InitMenuBar();
console_output_state = STATE_LASTWRITE;
}