Commit 5a69e425 authored by Guido van Rossum's avatar Guido van Rossum

Fix up the Windows menu via the new callback mechanism instead of

depending on menu post commands (which don't work when the menu is
torn off).
parent 9b489fb2
......@@ -7,6 +7,7 @@ from Tkinter import *
import tkSimpleDialog
import tkMessageBox
import idlever
import WindowList
# File menu
......@@ -159,7 +160,7 @@ class EditorWindow:
menu.add_separator()
end = end + 1
self.wmenu_end = end
menu.configure(postcommand=self.postwindowsmenu)
WindowList.register_callback(self.postwindowsmenu)
def wakeup(self):
if self.top.wm_state() == "iconic":
......@@ -196,7 +197,6 @@ class EditorWindow:
end = -1
if end > self.wmenu_end:
menu.delete(self.wmenu_end+1, end)
import WindowList
WindowList.add_windows_to_menu(menu)
rmenu = None
......@@ -441,6 +441,7 @@ class EditorWindow:
self.top.tkraise()
reply = self.maybesave()
if reply != "cancel":
WindowList.unregister_callback(self.postwindowsmenu)
if self.close_hook:
self.close_hook()
colorizing = 0
......@@ -450,6 +451,7 @@ class EditorWindow:
self.color.close(doh) # Cancel colorization
if not colorizing:
self.top.destroy()
self.top.after_idle(WindowList.call_callbacks)
return reply
def load_extensions(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment