-rw-r--r-- | korganizer/kotodoview.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/korganizer/kotodoview.cpp b/korganizer/kotodoview.cpp index 3ae977d..f46a103 100644 --- a/korganizer/kotodoview.cpp +++ b/korganizer/kotodoview.cpp @@ -523,15 +523,15 @@ KOTodoView::KOTodoView(Calendar *calendar,QWidget* parent,const char* name) : QPushButton * allclose = new QPushButton( "C",mQuickBar ); QPushButton * flat = new QPushButton( "F",mQuickBar ); int fixwid = mQuickAdd->sizeHint().height(); + int fixhei = fixwid; if ( QApplication::desktop()->width() > 800 ) - fixwid *= 2; + fixwid = (fixwid*3)/2; connect ( flat, SIGNAL ( clicked()), SLOT ( setAllFlat())); connect ( allopen, SIGNAL ( clicked()), SLOT ( setAllOpen())); connect ( allclose, SIGNAL ( clicked()), SLOT ( setAllClose())); s_done->setPixmap( SmallIcon("greenhook16")); - s_done->setFixedHeight( flat->sizeHint().height() ); connect ( s_done, SIGNAL ( clicked()), SLOT ( toggleCompleted())); s_run->setPixmap( SmallIcon("ko16old")); connect ( s_run, SIGNAL ( clicked()), SLOT ( toggleRunning())); @@ -543,16 +543,16 @@ KOTodoView::KOTodoView(Calendar *calendar,QWidget* parent,const char* name) : s_done->setFixedWidth( fixwid ); allopen->setFixedWidth( fixwid ); allclose->setFixedWidth( fixwid ); s_run->setFixedWidth( fixwid ); - if ( QApplication::desktop()->width() < 800 ) { - flat->setFixedHeight( fixwid ); - s_done->setFixedHeight( fixwid ); - allopen->setFixedHeight( fixwid ); - allclose->setFixedHeight( fixwid ); - s_run->setFixedHeight( fixwid ); - mNewSubBut->setFixedHeight( fixwid ); - } + + flat->setFixedHeight(fixhei ); + s_done->setFixedHeight(fixhei ); + allopen->setFixedHeight(fixhei ); + allclose->setFixedHeight(fixhei ); + s_run->setFixedHeight(fixhei ); + mNewSubBut->setFixedHeight(fixhei ); + quickLayout->addWidget( mNewSubBut ); quickLayout->addWidget( s_done ); quickLayout->addWidget( s_run ); quickLayout->addWidget( allopen ); |