summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-06-10 19:02:30 +0000
committerMike Fulbright <msf@redhat.com>2002-06-10 19:02:30 +0000
commit27d0a7dc129a2d24f0fd6e629d140869a17e683e (patch)
tree64c36a9b865f121aeb066095ff1f7ee8e6a47692 /gui.py
parentbb99f24c5a842f993575bd040cd7ced8c228c48f (diff)
downloadanaconda-27d0a7dc129a2d24f0fd6e629d140869a17e683e.tar.gz
anaconda-27d0a7dc129a2d24f0fd6e629d140869a17e683e.tar.xz
anaconda-27d0a7dc129a2d24f0fd6e629d140869a17e683e.zip
change slightly so tui and gui frontends can share concept of custom buttons, related to bug #66353
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/gui.py b/gui.py
index dcfac74b6..7f2511238 100755
--- a/gui.py
+++ b/gui.py
@@ -293,7 +293,11 @@ class MessageWindow:
if docustom:
rid=0
for button in custom_buttons:
- widget = dialog.add_button(button, rid)
+ if button == _("Cancel"):
+ tbutton = "gtk-cancel"
+ else:
+ tbutton = button
+ widget = dialog.add_button(tbutton, rid)
rid = rid + 1
defaultchoice = rid - 1