diff options
author | Matt Wilson <msw@redhat.com> | 2000-08-17 19:48:56 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-08-17 19:48:56 +0000 |
commit | eb0c38961043294fcf617c7675e6a23e170d49eb (patch) | |
tree | 477b9fb44d763ccd7df917ea9848d50e4243eb48 /xserver.py | |
parent | 3f242ad3ead1b6709a63bec4e7ad3c0978f42e27 (diff) | |
download | anaconda-eb0c38961043294fcf617c7675e6a23e170d49eb.tar.gz anaconda-eb0c38961043294fcf617c7675e6a23e170d49eb.tar.xz anaconda-eb0c38961043294fcf617c7675e6a23e170d49eb.zip |
don't frob the mouse if we're not going to use it
Diffstat (limited to 'xserver.py')
-rw-r--r-- | xserver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xserver.py b/xserver.py index a002cf547..4fcb45f11 100644 --- a/xserver.py +++ b/xserver.py @@ -68,7 +68,7 @@ def startX(): print "Probing for mouse type..." mouse = Mouse() - if not mouse.probe (): + if not mouse.probe (frob=1): if not mouseWindow(mouse): raise RuntimeError, "failed to get a mouse for X startup" else: |