[gutsy] desktop i386 tribe-3 normal icons very big font size

Bug #127827 reported by s.a.top
4
Affects Status Importance Assigned to Milestone
X.Org X server
Invalid
Undecided
Unassigned
xorg-server (Ubuntu)
Fix Released
High
Bryce Harrington

Bug Description

when booting from the "Xubuntu 7.10 (Gutsy Gibbon) Tribe 3" "PC (Intel x86) desktop CD"
while the icon size is normal the font size is very very large
on the the desktop, panels, menus, starters on the the desktop
resulting in "unreadable" gui
i think it is in the video driver package xserver-xorg-video-intel

because

i have currently installed xubuntu 7.04 (feisty fawn) final
the video driver package installed in it is xserver-xorg-video-i810
but when i try to to replace it with the xserver-xorg-video-intel
the same thing is happening normal icon size very large font size

so my conclusion is this:

1 the "Xubuntu 7.10 (Gutsy Gibbon) Tribe 3" "PC (Intel x86) desktop CD"
uses the wrong package for whatever reason

2 the "xserver-xorg-video-intel" package
contains a bug or an configuration mistake

tested on:

notebook hp compaq presario v5236ea with intel 945gm express video chipset

hope this can help you

servaas

Related branches

Revision history for this message
Paul Dufresne (paulduf) wrote :

Thank you for taking the time to report this bug and helping to make Ubuntu better. This bug did not have a package associated with it, which is important for ensuring that it gets looked at by the proper developers. You can learn more about finding the right package at [WWW] https://wiki.ubuntu.com/Bugs/FindRightPackage. I have classified this bug as a bug in xserver-xorg-video-intel.

I marked this as Confirmed, since you seems to have pin-point the problem.
I may eventually try it myself, as I have a 845GZ chipset based motherboard, I would just have to download XUbuntu.

Revision history for this message
Paul Dufresne (paulduf) wrote :

This seems to be bug #107320, with different symptom.
Looks like XFCE is not resetting DPI like others Desktops.

Are you able to attach /var/log/Xorg.0.log file to this report?

Changed in xserver-xorg-video-intel:
status: Confirmed → Incomplete
Revision history for this message
s.a.top (s.a.top) wrote :

/var/log/messages

Revision history for this message
s.a.top (s.a.top) wrote :

/var/log/Xorg.0.log

Revision history for this message
Paul Dufresne (paulduf) wrote :

Thank you for the requested Xorg.0.log.
You have the (==) intel(0): DPI set to (75, 75) too.
Marking this bug as a duplicate of bug #107320, even if your symptoms are more important, because it make your desktop almost unusable (I guess).

Changed in xserver-xorg-video-intel:
status: Incomplete → Confirmed
Revision history for this message
s.a.top (s.a.top) wrote :

that is all right thanks for your time
waiting for maybe a solution from some of the hard working geeks

Revision history for this message
Zadkiel (miloxreloaded-gmail) wrote :

I don't speak English, but I'll try to tell you my problem

I installed Gutsy Stable yesterday, and I've the same problem.

Firts, GDM shows up as very large characters in the login text field, larger then the field itself.
In the desktop some times the fonts are huge and I can't see anything, then with a Ctrl+Alt+backspace I did reloggin and only the fonts in the title window of all programs are huge.
In the Attachment you can see it.

Revision history for this message
Bryce Harrington (bryce) wrote :

The fix for 151311 can be used for addressing this, but it doesn't address this specific case. However we can add a quirk for that patch.

Changed in xserver-xorg-video-intel:
assignee: nobody → bryceharrington
importance: Undecided → High
Revision history for this message
Bryce Harrington (bryce) wrote :

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)

Revision history for this message
Bryce Harrington (bryce) wrote :

Fix committed to our xorg-server git tree, for the next release. This bug should also be forwarded upstream.

Changed in xorg-server:
status: Confirmed → Fix Committed
Revision history for this message
Launchpad Janitor (janitor) wrote :

This bug was fixed in the package xorg-server - 2:1.4.1~git20080131-1ubuntu3

---------------
xorg-server (2:1.4.1~git20080131-1ubuntu3) hardy; urgency=low

  [ Bryce Harrington ]
  * Add 150_edid_quirk_lp154w01.patch to fix font size on LGPhilipsLCD
    LP154W01-TLAE (LP: #127827)
  * Add 149_add_quirks_for_physical_screen_size_issues.patch to help
    address various common EDID issues (like monitors that report in
    centimeters instead of millimeters, etc.) (LP: #151311)

  [ Timo Aaltonen ]
  * Add 151_x86emu_handle_cpuid.patch to fix X86EMU CPUID handling.
    (LP: #180742)

 -- Timo Aaltonen <email address hidden> Tue, 19 Feb 2008 17:48:05 +0200

Changed in xorg-server:
status: Fix Committed → Fix Released
Revision history for this message
s.a.top (s.a.top) wrote :

xubuntu-8.04-desktop-i386.iso

is the released fix not included on the cd ?

if i boot the live cd i have all the same problems again

thanks a lot

-servaas

Revision history for this message
Bryce Harrington (bryce) wrote :

Upstream has made a slightly different patch that should cover this case... I'll roll this into the Intrepid xserver.

Revision history for this message
s.a.top (s.a.top) wrote : Re: [Bug 127827] Re: [gutsy] desktop i386 tribe-3 normal icons very big font size

Bryce Harrington schreef:
> Upstream has made a slightly different patch that should cover this
> case... I'll roll this into the Intrepid xserver.
>
>
ok thanks a lot for both the info and the work ... servaas

> The Word of God is living, active, and sharper than any two-edged
> sword. (Hebrews 4:12)
> Genesis 1:31 31 When we come to think about our works, we find, to our
> shame, that much has been very bad; but when God saw his work, all was
> very good. Good, for it was all just as the Creator would have it to
> be. All his works, in all places of his dominion, bless him; and
> therefore, bless thou the Lord, O my soul. Let us bless God for the
> gospel of Christ, and when we consider his almighty power, let us
> sinners flee from the wrath to come. If new-created unto the image of
> God in holiness, we shall at length enter the "new heavens and new
> earth, wherein dwelleth righteousness."

----------------------------------------------------------------------
Find out how you can get spam free email.
http://www.bluebottle.com/tag/3

Revision history for this message
dino99 (9d9) wrote :
Changed in xorg-server:
status: New → Invalid
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.