From 9fb0856f0a96ea9ac0ecfb81ebca9cf1a7996487 Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Thu, 10 Mar 2011 13:29:19 -0500 Subject: Pressing enter on the keyboard screen should go to the next screen (#683448). --- pyanaconda/iw/kbd_gui.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pyanaconda/iw/kbd_gui.py b/pyanaconda/iw/kbd_gui.py index 95fc10651..83ccaffb7 100644 --- a/pyanaconda/iw/kbd_gui.py +++ b/pyanaconda/iw/kbd_gui.py @@ -30,10 +30,15 @@ class KeyboardWindow(InstallWindow, installKeyboardWindow): InstallWindow.__init__(self, ics) installKeyboardWindow.__init__(self) + ics.cw.mainxml.get_widget("nextButton").grab_focus() + def getNext(self): installKeyboardWindow.getNext(self) def getScreen(self, anaconda): default = anaconda.instLanguage.getDefaultKeyboard(anaconda.rootPath) anaconda.keyboard.set(default) - return installKeyboardWindow.getScreen(self, default, anaconda.keyboard) + vbox = installKeyboardWindow.getScreen(self, default, anaconda.keyboard) + self.modelView.connect("select-cursor-row", lambda widget, vbox=vbox: self.ics.setGrabNext(1)) + + return vbox -- cgit