[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH] Pressing enter on the keyboard screen should go to the next screen (#683448).
- From: Chris Lumens <clumens redhat com>
- To: anaconda-devel-list redhat com
- Subject: [PATCH] Pressing enter on the keyboard screen should go to the next screen (#683448).
- Date: Thu, 10 Mar 2011 13:30:09 -0500
---
pyanaconda/iw/kbd_gui.py | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/pyanaconda/iw/kbd_gui.py b/pyanaconda/iw/kbd_gui.py
index 95fc106..83ccaff 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
--
1.7.4.1
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]