summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-02-29 16:52:41 +0000
committerMatt Wilson <msw@redhat.com>2000-02-29 16:52:41 +0000
commit60b58ae3d6360ba3092db131331e0a13af648b84 (patch)
treeacd28266aecfc145347fa840871bb1e43f829ca8
parent92d167f3e0b9c3e2c74a31b07db589415325b78e (diff)
downloadanaconda-60b58ae3d6360ba3092db131331e0a13af648b84.tar.gz
anaconda-60b58ae3d6360ba3092db131331e0a13af648b84.tar.xz
anaconda-60b58ae3d6360ba3092db131331e0a13af648b84.zip
disable mouse magic on sparc
-rw-r--r--todo.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/todo.py b/todo.py
index 25b245a59..68a952cec 100644
--- a/todo.py
+++ b/todo.py
@@ -1248,7 +1248,10 @@ class ToDo:
# turn it off
mousedev = None
- if os.environ.has_key ("DISPLAY"):
+
+ # XXX currently Bad Things (X async reply) happen when doing
+ # Mouse Magic on Sparc (Mach64, specificly)
+ if os.environ.has_key ("DISPLAY") and not arch == "sparc":
import xmouse
try:
mousedev = xmouse.get()[0]