-rw-r--r-- | core/pim/datebook/datebook.cpp | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/core/pim/datebook/datebook.cpp b/core/pim/datebook/datebook.cpp index 7dd93a6..e10842a 100644 --- a/core/pim/datebook/datebook.cpp +++ b/core/pim/datebook/datebook.cpp @@ -60,2 +60,3 @@ #include <qtextstream.h> +#include <qtimer.h> #include <qtl.h> @@ -88,2 +89,3 @@ DateBook::DateBook( QWidget *parent, const char *, WFlags f ) { + bool needEvilHack= false; // if we need an Evil Hack QTime t; @@ -183,3 +185,3 @@ DateBook::DateBook( QWidget *parent, const char *, WFlags f ) a = new QAction( tr( "Week" ), QString::null, 0, 0, 0, true ); - if (current==WEEK) a->setOn(true), viewWeek(); + if (current==WEEK) a->setOn(true), /*viewWeek(),*/ needEvilHack = true; ag->insert(a); @@ -222,2 +224,19 @@ DateBook::DateBook( QWidget *parent, const char *, WFlags f ) + /* + * Here is a problem description: + * When Weekview is the default view + * a DateBookWeekView get's created + * redraw() get's called. So what? + * Remember that we're still in the c'tor + * and no final layout has happened? Ok + * now all Events get arranged. Their x + * position get's determined by a QHeader + * position. But the QHeader isn't layouted or + * at the right position. redraw() is a slot + * so we'll call it then via a singleShot + * from view() + */ + if( needEvilHack ){ + QTimer::singleShot( 500, this, SLOT(viewWeek()) ); + } } |