-rw-r--r-- | core/pim/datebook/datebookweek.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/pim/datebook/datebookweek.cpp b/core/pim/datebook/datebookweek.cpp index ab7e963..dad1c3f 100644 --- a/core/pim/datebook/datebookweek.cpp +++ b/core/pim/datebook/datebookweek.cpp @@ -310,15 +310,16 @@ void DateBookWeekView::drawContents( QPainter *p, int cx, int cy, int cw, int ch } void DateBookWeekView::resizeEvent( QResizeEvent *e ) { const int hourWidth = 20; QScrollView::resizeEvent( e ); - int avail = width()-qApp->style().scrollBarExtent().width()-1; - header->setGeometry( 0, 0, avail, header->sizeHint().height() ); - setMargins( 0, header->height(), 0, 0 ); + int avail = visibleWidth(); + header->setGeometry( leftMargin()+frameWidth()+frameRect().left() , frameWidth(), + visibleWidth(), header->sizeHint().height() ); + setMargins( 0, header->sizeHint().height(), 0, 0 ); header->resizeSection( 0, hourWidth ); int sw = (avail - hourWidth) / 7; for ( int i = 1; i < 7; i++ ) header->resizeSection( i, sw ); header->resizeSection( 7, avail - hourWidth - sw*6 ); } |