diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | lib/Xconfig/xfree.pm | 13 |
2 files changed, 9 insertions, 6 deletions
@@ -2,6 +2,8 @@ o generic flat planel must allow "800x480 @ 60.00 Hz (GTF) hsync: 29.82 kHz" so "HorizSync 31.5-90" is too strict, generating "HorizSync 29.5-90" o have Option "PanelGeometry" "XXxYY" on geode driver + o do not display the weird ratios 128/75, 85/48 (for 1024x600 and 1360x768) + - mousedrake, XFdrake: o do not use /dev/mouse symlink (in xorg.conf) - mousedrake diff --git a/lib/Xconfig/xfree.pm b/lib/Xconfig/xfree.pm index b70948b..cc4d6c8 100644 --- a/lib/Xconfig/xfree.pm +++ b/lib/Xconfig/xfree.pm @@ -788,12 +788,6 @@ our %ratio2resolutions = ( '15/9' => [ '800x480', '1280x768', # WXGA ?? should be 1366x768 ?? ], - - # 1.707 - '128/75' => [ '1024x600' ], - - # 1.771 - '85/48' => [ '1360x768' ], # 1.78 '16/9' => [ #'854x480', # WVGA @@ -834,6 +828,13 @@ our %ratio2resolutions = ( # '107/60' => [ '856x480' ], N_("_:weird aspect ratio\nother") => [ + + # 1.707 = 128/75 + '1024x600', + + # 1.771 = 85/48 + '1360x768', + # 2.13 = 32/15 '1024x480', '1280x600', # VAIO |