author | hrw <hrw> | 2005-09-12 21:17:18 (UTC) |
---|---|---|
committer | hrw <hrw> | 2005-09-12 21:17:18 (UTC) |
commit | 2b74c3a954389db73827ba2bf0d79b835ec569f1 (patch) (unidiff) | |
tree | 3d0268c50d01836aea555803ed4f98538881eafe | |
parent | c94b0601f73dabfb65525b263222d0ccdbd1544c (diff) | |
download | opie-2b74c3a954389db73827ba2bf0d79b835ec569f1.zip opie-2b74c3a954389db73827ba2bf0d79b835ec569f1.tar.gz opie-2b74c3a954389db73827ba2bf0d79b835ec569f1.tar.bz2 |
libqpe/datebookmonth selector use too small fontsize on VGA screen.
- now on =>480 screen.width it will use "default_fontsize" - 2 size
on smaller screen devices behavior is not changed
- close bug #1695
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | library/datebookmonth.cpp | 9 |
2 files changed, 19 insertions, 1 deletions
@@ -1,3 +1,14 @@ | |||
1 | 2005-??-??Opie 1.2.2 | ||
2 | |||
3 | |||
4 | New Features | ||
5 | ------------ | ||
6 | |||
7 | |||
8 | Fixed Bugs | ||
9 | ---------- | ||
10 | * #1695 - Date selector use too small fontsize on VGA screen (hrw) | ||
11 | |||
1 | 2005-09-11Opie 1.2.1 | 12 | 2005-09-11Opie 1.2.1 |
2 | 13 | ||
3 | 14 | ||
diff --git a/library/datebookmonth.cpp b/library/datebookmonth.cpp index 2616b7b..ffdf335 100644 --- a/library/datebookmonth.cpp +++ b/library/datebookmonth.cpp | |||
@@ -661,7 +661,14 @@ void DayItemMonth::paint( QPainter *p, const QColorGroup &cg, | |||
661 | 661 | ||
662 | // Finally, draw the number. | 662 | // Finally, draw the number. |
663 | QFont f = p->font(); | 663 | QFont f = p->font(); |
664 | f.setPointSize( ( f.pointSize() / 3 ) * 2 ); | 664 | if(qApp->desktop()->width() >= 480) |
665 | { | ||
666 | f.setPointSize( f.pointSize() - 2 ); | ||
667 | } | ||
668 | else | ||
669 | { | ||
670 | f.setPointSize( ( f.pointSize() / 3 ) * 2 ); | ||
671 | } | ||
665 | p->setFont( f ); | 672 | p->setFont( f ); |
666 | QFontMetrics fm( f ); | 673 | QFontMetrics fm( f ); |
667 | p->drawText( 1, 1 + fm.ascent(), QString::number( day() ) ); | 674 | p->drawText( 1, 1 + fm.ascent(), QString::number( day() ) ); |