The monitor's EDID is reporting the height and width in cm instead of
mm, resulting in bad image size.

(II) intel(0): Max H-Image Size [cm]: horiz.: 33  vert.: 21
...
(II) intel(0): clock: 71.2 MHz   Image Size:  289 x 21 mm

Here's a patch to add it:

--- xorg-server-patched/hw/xfree86/modes/xf86EdidModes.c.orig   2008-02-14 
17:21:03.000000000 -0800
+++ xorg-server-patched/hw/xfree86/modes/xf86EdidModes.c        2008-02-14 
17:22:43.000000000 -0800
@@ -110,6 +110,11 @@ static Bool quirk_detailed_h_in_cm (int 
        DDC->vendor.prod_id == 0)
        return TRUE;
 
+    /* LP Bug #127827; "LGPhilipsLCD LP154W01-TLAE" */
+    if (memcmp (DDC->vendor.name, "LPL", 4) == 0 &&
+        DDC->vendor.prod_id == 10752)
+        return TRUE;
+
     /* Bug #11603: Funai Electronics PM36B */
     if (memcmp (DDC->vendor.name, "FCM", 4) == 0 &&
        DDC->vendor.prod_id == 13600)

-- 
[gutsy] desktop i386 tribe-3 normal icons very big font size
https://bugs.launchpad.net/bugs/127827
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to