author | llornkcor <llornkcor> | 2002-08-16 02:59:48 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-08-16 02:59:48 (UTC) |
commit | 0b8d488ab4691dc32ecd49b2b2fb7c497cb4c03a (patch) (unidiff) | |
tree | f627f877cc7209be2805526c5df6686614e67d80 | |
parent | 40527ffb82b83ad521ed766f11b47636db055ffe (diff) | |
download | opie-0b8d488ab4691dc32ecd49b2b2fb7c497cb4c03a.zip opie-0b8d488ab4691dc32ecd49b2b2fb7c497cb4c03a.tar.gz opie-0b8d488ab4691dc32ecd49b2b2fb7c497cb4c03a.tar.bz2 |
make playlist fit when full
-rw-r--r-- | noncore/multimedia/opieplayer2/playlistwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/multimedia/opieplayer2/playlistwidget.cpp b/noncore/multimedia/opieplayer2/playlistwidget.cpp index 612fd45..f5906b3 100644 --- a/noncore/multimedia/opieplayer2/playlistwidget.cpp +++ b/noncore/multimedia/opieplayer2/playlistwidget.cpp | |||
@@ -194,13 +194,13 @@ PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl ) | |||
194 | 194 | ||
195 | 195 | ||
196 | // Add the playlist area | 196 | // Add the playlist area |
197 | 197 | ||
198 | QVBox *vbox3 = new QVBox( pTab ); vbox3->setBackgroundMode( PaletteButton ); | 198 | QVBox *vbox3 = new QVBox( pTab ); vbox3->setBackgroundMode( PaletteButton ); |
199 | d->playListFrame = vbox3; | 199 | d->playListFrame = vbox3; |
200 | d->playListFrame ->setMinimumSize(235,260); | 200 | d->playListFrame ->setMinimumSize(235,250); |
201 | 201 | ||
202 | QHBox *hbox2 = new QHBox( vbox3 ); hbox2->setBackgroundMode( PaletteButton ); | 202 | QHBox *hbox2 = new QHBox( vbox3 ); hbox2->setBackgroundMode( PaletteButton ); |
203 | 203 | ||
204 | d->selectedFiles = new PlayListSelection( hbox2); | 204 | d->selectedFiles = new PlayListSelection( hbox2); |
205 | QVBox *vbox1 = new QVBox( hbox2 ); vbox1->setBackgroundMode( PaletteButton ); | 205 | QVBox *vbox1 = new QVBox( hbox2 ); vbox1->setBackgroundMode( PaletteButton ); |
206 | 206 | ||