shrink less vertically

svn path=/branches/work/kde4/playground/graphics/okular/; revision=542633
remotes/origin/old/work/newpageview
Pino Toscano 20 years ago
parent 2e703f2cfa
commit 1e76f54012
  1. 4
      ui/thumbnaillist.cpp

@ -13,6 +13,7 @@
#include <qtimer.h>
#include <qpainter.h>
#include <qscrollbar.h>
#include <qsizepolicy.h>
#include <klocale.h>
#include <kurl.h>
#include <kaction.h>
@ -561,6 +562,9 @@ ThumbnailController::ThumbnailController( QWidget * parent, ThumbnailList * list
// change toolbar appearance
setIconSize( QSize( 16, 16 ) );
setMovable( false );
QSizePolicy sp = sizePolicy();
sp.setVerticalPolicy( QSizePolicy::Minimum );
setSizePolicy( sp );
// insert a togglebutton [show only bookmarked pages]
//insertSeparator();

Loading…
Cancel
Save