diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-05-29 00:24:53 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-05-29 00:24:53 +0000 |
commit | 75c835e6750a63ce59f8422ca948b9b8051cd064 (patch) | |
tree | 36e79104c55e20e376b649e6aeda4c39d87c8958 /instdata.py | |
parent | e20588a97889f462c0ceefdf05bca001ac017b3e (diff) | |
download | anaconda-75c835e6750a63ce59f8422ca948b9b8051cd064.tar.gz anaconda-75c835e6750a63ce59f8422ca948b9b8051cd064.tar.xz anaconda-75c835e6750a63ce59f8422ca948b9b8051cd064.zip |
more keyboard related changes. the xconfig object now has a keyboard object
instead of just trying to be updated everytime we change the keyboard object.
needs a newer rhpl (0.7 or better)
Diffstat (limited to 'instdata.py')
-rw-r--r-- | instdata.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/instdata.py b/instdata.py index 0b5653063..bdbc93498 100644 --- a/instdata.py +++ b/instdata.py @@ -78,6 +78,10 @@ class InstallData: def setInstallProgressClass(self, c): self.instProgress = c + # expects a Keyboard object + def setKeyboard(self, keyboard): + self.keyboard = keyboard + # expects a Mouse object def setMouse(self, mouse): self.mouse = mouse |