diff options
author | Frank Huang <frankr.huang@amd.com> | 2010-09-29 16:45:56 +0800 |
---|---|---|
committer | Martin-Éric Racine <q-funk@iki.fi> | 2010-09-29 16:41:24 +0300 |
commit | 334534cde47f1ffe126e4e665988480fc57a7307 (patch) | |
tree | e3d30f88561d66fedbf0716e1782047c29f2500e /src | |
parent | becaa0ae375e996c2f83192bb84a5c89f94933dd (diff) |
Add resolution 1024x600 support for PANEL
*Users can not get 1024x600 by default when using panel without xorg.conf.
Add this screen resolution to the panel_modes table to support it by default.
*Users who are using VGA will get this resolution by the monitor EDID. No
code is needed
*Use gtf tool to get the parameters
*Ubuntu bugzilla #433142
Signed-off-by: Frank Huang <frankr.huang@amd.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/lx_panel.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lx_panel.c b/src/lx_panel.c index 2e076d4..387e1be 100644 --- a/src/lx_panel.c +++ b/src/lx_panel.c @@ -57,6 +57,9 @@ DisplayModeRec lx_panel_modes[] = { {MODEPREFIX, 40000, 800, 840, 968, 1056, 0, 600, 601, 605, 628, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX} , /* 880x600@60 */ + {MODEPREFIX, 48960, 1024, 1064, 1168, 1312, 0, 600, 601, 604, 622, 0, + V_NHSYNC | V_NVSYNC, MODESUFFIX} + , /* 1024x600@60 */ {MODEPREFIX, 65000, 1024, 1048, 1184, 1344, 0, 768, 771, 777, 806, 0, V_NHSYNC | V_NVSYNC, MODESUFFIX} , /* 1024x768@60 */ |