From 71017beb975666a0f654898ed6a40a5303d567dc Mon Sep 17 00:00:00 2001 From: zautrix Date: Wed, 05 Jan 2005 14:55:14 +0000 Subject: minor fixes --- (limited to 'korganizer') diff --git a/korganizer/koagenda.cpp b/korganizer/koagenda.cpp index 6532705..eb3791e 100644 --- a/korganizer/koagenda.cpp +++ b/korganizer/koagenda.cpp @@ -1239,9 +1239,14 @@ void KOAgenda::drawContentsToPainter( QPainter* paint, bool backgroundOnly )// i int y = ((int)(cy/lGridSpacingY))*lGridSpacingY; if ( lGridSpacingY > 0 ) { while (y < cy + ch) { + p->setPen( SolidLine ); + p->drawLine(cx,y,cx+cw,y); + y+=lGridSpacingY; + p->setPen( DotLine ); p->drawLine(cx,y,cx+cw,y); y+=lGridSpacingY; } + p->setPen( SolidLine ); } mPixPainter.end() ; } -- cgit v0.9.0.2