author | zautrix <zautrix> | 2004-07-05 08:28:21 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-07-05 08:28:21 (UTC) |
commit | c2d4beeaeda44694a3e1c0b72a5808d2f518b286 (patch) (side-by-side diff) | |
tree | ea8fffd3b18595781b6664f7a4aa705615351085 | |
parent | 9f0d4ee43ce6f8c61abbd546376ef4f262261a1e (diff) | |
download | kdepimpi-c2d4beeaeda44694a3e1c0b72a5808d2f518b286.zip kdepimpi-c2d4beeaeda44694a3e1c0b72a5808d2f518b286.tar.gz kdepimpi-c2d4beeaeda44694a3e1c0b72a5808d2f518b286.tar.bz2 |
Fix of Jumpbuttonbar on 5500 screen
-rw-r--r-- | kaddressbook/kabcore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index 68d3d2d..8d08713 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp @@ -1179,13 +1179,13 @@ void KABCore::initGUI() if ( QApplication::desktop()->width() > 480 ) { topLayout = new QHBoxLayout( this ); mMiniSplitter = new KDGanttMinimizeSplitter( Qt::Horizontal, this); mMiniSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Right ); } else { - topLayout = new QVBoxLayout( this ); + topLayout = new QHBoxLayout( this ); mMiniSplitter = new KDGanttMinimizeSplitter( Qt::Vertical, this); mMiniSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Down ); } topLayout->addWidget(mMiniSplitter ); mViewManager = new ViewManager( this, mMiniSplitter ); |