Bug 89978

Summary: Too small font in the notify window
Product: [Applications] akregator Reporter: ebeb <ebeb>
Component: generalAssignee: kdepim bugs <kdepim-bugs>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:

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);