author | zautrix <zautrix> | 2005-03-25 19:49:52 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-03-25 19:49:52 (UTC) |
commit | 4d93404e3453229e58c2ff9305beae131c9f1af9 (patch) (unidiff) | |
tree | aa5a4664ba2de62fbfe8c43b23e906868da16e86 | |
parent | ae440bf75e7f74f35f83d082de9c7a34d2d3c65d (diff) | |
download | kdepimpi-4d93404e3453229e58c2ff9305beae131c9f1af9.zip kdepimpi-4d93404e3453229e58c2ff9305beae131c9f1af9.tar.gz kdepimpi-4d93404e3453229e58c2ff9305beae131c9f1af9.tar.bz2 |
fix
-rw-r--r-- | korganizer/koagendaview.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/korganizer/koagendaview.cpp b/korganizer/koagendaview.cpp index f287216..957ac52 100644 --- a/korganizer/koagendaview.cpp +++ b/korganizer/koagendaview.cpp | |||
@@ -127,18 +127,21 @@ void TimeLabels::drawContents(QPainter *p,int cx, int cy, int cw, int ch) | |||
127 | QString suffix; | 127 | QString suffix; |
128 | QString fullTime; | 128 | QString fullTime; |
129 | int tW = fm.width("24:00i"); | 129 | int tW = fm.width("24:00i"); |
130 | int timeHeight = fm.height(); | 130 | int timeHeight = fm.height(); |
131 | if ( timeHeight > mCellHeight ) | 131 | timeHeight -= (timeHeight/4-2); |
132 | timeHeight = mCellHeight-1; | ||
133 | int borderWidth = 5; | 132 | int borderWidth = 5; |
134 | QFont nFont = p->font(); | 133 | QFont nFont = p->font(); |
135 | QFont sFont = nFont; | 134 | QFont sFont = nFont; |
136 | sFont.setPointSize( sFont.pointSize()/2+2 ); | 135 | sFont.setPointSize( sFont.pointSize()/2+2 ); |
137 | if (!KGlobal::locale()->use12Clock()) | 136 | if (!KGlobal::locale()->use12Clock()) |
138 | suffix = "00"; | 137 | suffix = "00"; |
139 | QFontMetrics fmS( sFont ); | 138 | QFontMetrics fmS( sFont ); |
140 | int sHei = fmS.height(); | 139 | int sHei = fmS.height(); |
140 | if ( timeHeight > mCellHeight ) { | ||
141 | timeHeight = mCellHeight-1; | ||
142 | sHei -= 2; | ||
143 | } | ||
141 | 144 | ||
142 | while (y < cy + ch) { | 145 | while (y < cy + ch) { |
143 | p->drawLine(cx,y,cx+tW,y); | 146 | p->drawLine(cx,y,cx+tW,y); |
144 | hour.setNum(cell); | 147 | hour.setNum(cell); |