From af2e6081c2e87086d90b6b5179e9d9d48754a657 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Wed, 19 Jun 2002 16:06:13 +0000 Subject: add keyboard accelerators for debug and save to floppy (#66373) --- gui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gui.py') diff --git a/gui.py b/gui.py index 7f2511238..69f8a8fe2 100755 --- a/gui.py +++ b/gui.py @@ -206,8 +206,8 @@ class ProgressWindow: class ExceptionWindow: def __init__ (self, text): win = gtk.Dialog("Exception Occured", mainWindow, gtk.DIALOG_MODAL) - win.add_button("Debug", 0) - win.add_button("Save to floppy", 1) + win.add_button("_Debug", 0) + win.add_button("_Save to floppy", 1) win.add_button('gtk-ok', 2) buffer = gtk.TextBuffer(None) buffer.set_text(text) -- cgit