diff options
author | Chris Lumens <clumens@redhat.com> | 2009-01-23 11:13:11 -0500 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2009-02-09 11:31:06 -0500 |
commit | 087810f63d32edd5b88dbbbcda6a82f242339862 (patch) | |
tree | 04f1fd9c9b5104ac168af9b5a715c96d11648372 | |
parent | d5806d9b1797646ff61102a63fa58888105f0e1c (diff) | |
download | anaconda-087810f63d32edd5b88dbbbcda6a82f242339862.tar.gz anaconda-087810f63d32edd5b88dbbbcda6a82f242339862.tar.xz anaconda-087810f63d32edd5b88dbbbcda6a82f242339862.zip |
Offer VNC by default, not text mode.
-rw-r--r-- | vnc.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -352,8 +352,8 @@ def askVncWindow(title = None, message = None): while step < STEP_DONE: if step == STEP_MESSAGE: button = ButtonChoiceWindow(screen, title, message, - buttons = [ _("Use text mode"), - _("Start VNC") ]) + buttons = [ _("Start VNC"), + _("Use text mode") ]) if button == string.lower (_("Use text mode")): screen.finish() |