Bug 89978 - Too small font in the notify window
Summary: Too small font in the notify window
Status: RESOLVED FIXED
Alias: None
Product: akregator
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: 2004-09-21 22:35 UTC by ebeb
Modified: 2004-10-08 20:31 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 ebeb 2004-09-21 22:35:12 UTC
Version:           1.0 beta6 (using KDE KDE 3.2.3)
Installed from:    Compiled From Sources
OS:                Linux

http://maker.dn.farlep.net/akregator.png

I use Tahoma 10 font, that you can see on screenshot.

balloon.cpp:

        QFont f = m_articleList->font();
        if (f.pointSize() > 8)
                f.setPointSize(f.pointSize()-4);
        m_articleList->setFont(f);

So, I have in notify window 6 point size, that too small for me.
Comment 1 Sashmit Bhaduri 2004-09-21 22:54:29 UTC
Yeah, a rewrite of most of the notification code is (planned) for beta7
Comment 2 Teemu Rytilahti 2004-10-07 23:17:14 UTC
I don't think it's going to be in beta7, but hopefully in the next one.
Comment 3 Frank Osterfeld 2004-10-08 20:31:16 UTC
CVS commit by osterfeld: 

set minimum font size in balloon to 8.
CCMAIL: 89978-done@bugs.kde.org


  M +1 -1      balloon.cpp   1.4


--- kdenonbeta/akregator/src/balloon.cpp  #1.3:1.4
@@ -60,5 +60,5 @@ Balloon::Balloon(const QString &text)
 
         QFont f = m_articleList->font();
-        if (f.pointSize() > 8)
+        if (f.pointSize() > 12)
                 f.setPointSize(f.pointSize()-4);
         m_articleList->setFont(f);