Bug 53733 - Message Body Font Point Size does not work
Summary: Message Body Font Point Size does not work
Status: RESOLVED DUPLICATE of bug 50983
Alias: None
Product: kmail
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: kdepim bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-01-31 13:52 UTC by schmid
Modified: 2007-09-14 12:17 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description schmid 2003-01-31 13:52:20 UTC
Version:            (using KDE KDE 3.1)
Installed from:    Compiled From Sources
Compiler:          gcc version 3.2 20020903 (Red Hat Linux 8.0 3.2-7) 
OS:          Linux

Looks like this bug was squashed in earlier releases... but has shown up again.  I can adjust font type and size in all portions of Kmail except Message Body.  In the Message body I can adjust Font type... but point size.
Comment 1 Ingo Klöcker 2003-02-01 18:33:35 UTC
Subject: Re:  New: Message Body Font Point Size does not work

What do you mean? That you can't change the font size?

Comment 2 schmid 2003-02-02 20:39:53 UTC
Subject: Re:  Message Body Font Point Size does not work        

If you try to change the fonts for Kmail... you can change the font name.. 
but not the font size.  No changes to the size of fonts for the Message 
body takes effect.

Pete.

On 1 Feb 2003, Ingo "Kl
Comment 3 Ingo Klöcker 2003-02-06 01:33:12 UTC
Subject: Re:  Message Body Font Point Size does not work

I can definitely change the size of the Message Body Font. The only 
thing that doesn't seem to work is font sizes smaller than 10 Point. 
Which font are you using for the message body?


Comment 4 schmid 2003-02-06 13:21:07 UTC
Subject: Re:  Message Body Font Point Size does not work

Actually I just took some time to cycle through many of the fonts, Font Styles 
and Sizes.

The only thing that seems to work fine when applied to the Message Body are 
the Font Styles (Regular, Italic, Bold....etc).  The different Fonts and 
DIfferent Sizes have no effect on the Message Body.  I have tried all of the 
Sizes and many of the Fonts.

Again, This is a RH 8.0 machine created from Konstruct with compiler:
gcc version 3.2 20020903 (Red Hat Linux 8.0 3.2-7)

Thanks,

Pete

On Wednesday 05 February 2003 19:33, Ingo "Kl
Comment 5 Ingo Klöcker 2003-02-07 00:52:43 UTC
Subject: Re:  Message Body Font Point Size does not work

Can you change the fonts in Konqueror?

Comment 6 schmid 2003-02-07 13:35:57 UTC
Subject: Re:  Message Body Font Point Size does not work

It does not appear that I can.

Pete.

On Thursday 06 February 2003 18:52, you wrote:
> ------- You are receiving this mail because: -------
> You reported the bug, or are watching the reporter.
>
> http://bugs.kde.org/show_bug.cgi?id=53733
>
>
>
>
> ------- Additional Comments From kloecker@kde.org  2003-02-07 00:52 -------
> Subject: Re:  Message Body Font Point Size does not work
>
> Can you change the fonts in Konqueror?

Comment 7 gallir 2003-03-16 18:42:16 UTC
It happens here as well. I've have subpixel antialiasing enabled. 
Tried by deleting kmailrc but it doesn't solve the problem. 
 
Just in case, I attach my /etc/fonts/local.conf (fonts.conf is the Debian Sid default): 
 
---------------------------- 
<?xml version="1.0"?> 
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> 
<!-- /etc/fonts.conf file to configure system font access --> 
<fontconfig> 
    <dir>/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType</dir> 
    <dir>/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID</dir> 
 
<!--  Habilitamos el antialias con sub-pixeling para los LCD --> 
    <match target="font"> 
        <test qual="all" name="rgba"> 
            <const>unknown</const> 
        </test> 
        <edit name="rgba" mode="assign"><const>rgb</const></edit> 
    <!-- Por las dudas habilitamos el hinting y deshabilitamos el auto --> 
        <edit name="hinting" mode="assign"><bool>true</bool></edit> 
        <edit name="autohint" mode="assign"><bool>false</bool></edit> 
    </match> 
 
    <!-- Si la fuente es de menos de 11 puntos, quitamos el antialising --> 
    <match target="pattern"> 
        <test qual="any" name="size" compare="less"> 
            <double>11</double> 
        </test> 
        <edit name="antialias" mode="assign"> 
            <bool>false</bool> 
        </edit> 
    </match> 
 
    <!-- Casi lo mismo, pero para el konqueror y el kmail 
         que solo respetan el pixelsize --> 
    <match target="pattern"> 
        <test qual="any" name="pixelsize" compare="less"> 
            <double>14</double> 
        </test> 
        <edit name="antialias" mode="assign"> 
            <bool>false</bool> 
        </edit> 
    </match> 
 
    <match target="pattern"> 
        <test qual="any" name="pixelsize" compare="less"> 
            <double>9</double> 
        </test> 
        <edit name="pixelsize" mode="assign"> 
            <double>9</double> 
        </edit> 
    </match> 
 
    <match target="pattern"> 
        <test qual="any" name="size" compare="less"> 
            <double>6</double> 
        </test> 
        <edit name="size" mode="assign"> 
            <double>6</double> 
        </edit> 
    </match> 
</fontconfig> 
 
 
Comment 8 Stephan Kulow 2003-09-27 11:15:10 UTC
I will handle that with #50983 

*** This bug has been marked as a duplicate of 50983 ***
Comment 9 Tristan Miller 2003-10-14 14:41:52 UTC
Note to all who are suffering from this bug:  I have just found that the
workaround proposed by Stephan for bug 50983 also fixes this bug (on my system,
anyway).  In essence, you should add the following to your
.kde/share/config/kmailrc file:

[HTML Settings]
MinimumFontSize=x

Where x is some suitably small number.  This should tide us over until the bug
is properly fixed.