diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-31 17:13:33 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-31 17:13:33 +0000 |
commit | 39ee80ca48f081b1215691d6ac94a1ab6bbf20fc (patch) | |
tree | ed5ddee051c098cbb794a2aeb02a86931d4da615 /xserver.py | |
parent | 937b34d9a093b60f04f8c84a3014a7786ecdd035 (diff) | |
download | anaconda-39ee80ca48f081b1215691d6ac94a1ab6bbf20fc.tar.gz anaconda-39ee80ca48f081b1215691d6ac94a1ab6bbf20fc.tar.xz anaconda-39ee80ca48f081b1215691d6ac94a1ab6bbf20fc.zip |
default to 640x480
Diffstat (limited to 'xserver.py')
-rw-r--r-- | xserver.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xserver.py b/xserver.py index 5d058752b..60952311c 100644 --- a/xserver.py +++ b/xserver.py @@ -84,6 +84,9 @@ EndSection """ % settings) f.write (x.monitorSection ()) f.write (x.deviceSection ()) + x.modes["8"] = [ "640x480" ] + x.modes["16"] = [ "640x480" ] + x.modes["32"] = [ "640x480" ] f.write (x.screenSection ()) f.close () |