update -- Undo is now entry 1

This commit is contained in:
Guido van Rossum 1996-08-21 20:13:08 +00:00
parent 4ec060ad28
commit a4ddb238bc
1 changed files with 3 additions and 2 deletions

View File

@ -74,8 +74,9 @@ def makeEditMenu():
# just to be cute, let's disable the undo option:
Edit_button.menu.add('command', label="Undo")
# undo is the 0th entry...
Edit_button.menu.entryconfig(0, state=DISABLED)
# Since the tear-off bar is the 0th entry,
# undo is the 1st entry...
Edit_button.menu.entryconfig(1, state=DISABLED)
# and these are just for show. No "command" callbacks attached.
Edit_button.menu.add_command(label="Cut")