From 63fc1527600eff543fd194bdb02bb82a1fa23579 Mon Sep 17 00:00:00 2001 From: jakub Date: Mon, 25 Oct 1999 16:08:42 +0000 Subject: Play safe and never make 1920x1200 a default resolution, plus allow it to be chosen on Sun 24-inch only for now. For 6.2 this can be removed, but now I don't want to touch much. Run mkinitrd with --ifneeded. --- xf86config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xf86config.py') diff --git a/xf86config.py b/xf86config.py index 9cce4ceb1..4a96b1009 100644 --- a/xf86config.py +++ b/xf86config.py @@ -78,7 +78,7 @@ class XF86Config: if not self.vidRam: return if string.atoi(self.vidRam) >= 4096: - self.modes["8"] = ["640x480", "800x600", "1024x768", "1152x864", "1280x1024", "1600x1200", "1920x1200"] + self.modes["8"] = ["640x480", "800x600", "1024x768", "1152x864", "1280x1024", "1600x1200"] self.modes["16"] = ["640x480", "800x600", "1024x768", "1152x864", "1280x1024", "1600x1200"] self.modes["32"] = ["640x480", "800x600", "1024x768", "1152x864"] elif string.atoi(self.vidRam) >= 2048: -- cgit