summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-06-19 16:06:13 +0000
committerJeremy Katz <katzj@redhat.com>2002-06-19 16:06:13 +0000
commitaf2e6081c2e87086d90b6b5179e9d9d48754a657 (patch)
tree10dfb004fb42d1b45a425edae8657182b57a45c3 /gui.py
parent2afb3caf69adea3c377a1dede12c48e399f61b74 (diff)
downloadanaconda-af2e6081c2e87086d90b6b5179e9d9d48754a657.tar.gz
anaconda-af2e6081c2e87086d90b6b5179e9d9d48754a657.tar.xz
anaconda-af2e6081c2e87086d90b6b5179e9d9d48754a657.zip
add keyboard accelerators for debug and save to floppy (#66373)
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py4
1 files changed, 2 insertions, 2 deletions
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)