author | zautrix <zautrix> | 2005-04-19 08:56:03 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-04-19 08:56:03 (UTC) |
commit | 5d7012677b05091bbf16c7405f792bf02720d775 (patch) (side-by-side diff) | |
tree | 1c31bcd5f90347edcdcdd359e377a6141853ec7d /korganizer | |
parent | facfeef650a79cdd97414c47a571ae6ba30d36b3 (diff) | |
download | kdepimpi-5d7012677b05091bbf16c7405f792bf02720d775.zip kdepimpi-5d7012677b05091bbf16c7405f792bf02720d775.tar.gz kdepimpi-5d7012677b05091bbf16c7405f792bf02720d775.tar.bz2 |
rec fix
-rw-r--r-- | korganizer/koeditorrecurrence.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/korganizer/koeditorrecurrence.cpp b/korganizer/koeditorrecurrence.cpp index 47e73dd..e165017 100644 --- a/korganizer/koeditorrecurrence.cpp +++ b/korganizer/koeditorrecurrence.cpp @@ -724,25 +724,25 @@ KOEditorRecurrence::KOEditorRecurrence( QWidget* parent, const char *name ) : topLayout->setMargin( KDialog::marginHintSmall() ); mEnabledCheck = new QCheckBox( i18n("Enable Recurrence"), this ); connect( mEnabledCheck, SIGNAL( toggled( bool ) ), SLOT( setEnabled( bool ) ) ); topLayout->addMultiCellWidget( mEnabledCheck, 0, 0, 0, 1 ); mTimeGroupBox = new QGroupBox( 1, Horizontal, i18n("Time"), this ); topLayout->addMultiCellWidget( mTimeGroupBox, 1, 1 , 0 , 1 ); - if ( QApplication::desktop()->width() <= 320) { + if ( QApplication::desktop()->width() <= 640 ) { mTimeGroupBox->hide(); } // QFrame *timeFrame = new QFrame( mTimeGroupBox ); // QBoxLayout *layoutTimeFrame = new QHBoxLayout( timeFrame ); // layoutTimeFrame->setSpacing( KDialog::spacingHint() ); mDateTimeLabel = new QLabel( mTimeGroupBox ); // mDateTimeLabel = new QLabel( timeFrame ); // layoutTimeFrame->addWidget( mDateTimeLabel ); //mTimeGroupBox->setSizePolicy( QSizePolicy( QSizePolicy::Preferred, QSizePolicy::Maximum ) ); //mDateTimeLabel->setSizePolicy( QSizePolicy( QSizePolicy::Preferred, QSizePolicy::Maximum) ); |