X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fqt4%2Fcomponents%2Fplaylist%2Fplaylist.cpp;h=019bad47eb8ea5911f9a60b1feb180213d26c8cd;hb=69863bd612acc31188fa55c713e0c9dc329eb909;hp=2337ed91337fa71ca5ea27d541225a8f8703dc61;hpb=2f6eb75c0d317e521e201e3a61a0b0642ee9e552;p=vlc diff --git a/modules/gui/qt4/components/playlist/playlist.cpp b/modules/gui/qt4/components/playlist/playlist.cpp index 2337ed9133..019bad47eb 100644 --- a/modules/gui/qt4/components/playlist/playlist.cpp +++ b/modules/gui/qt4/components/playlist/playlist.cpp @@ -157,15 +157,6 @@ PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i, QWidget *_par ) CONNECT( mainView, viewChanged( const QModelIndex& ), this, changeView( const QModelIndex &) ); - /* Zoom */ - QSlider *zoomSlider = new QSlider( Qt::Horizontal, this ); - zoomSlider->setRange( -10, 10); - zoomSlider->setPageStep( 3 ); - zoomSlider->setValue( model->getZoom() ); - zoomSlider->setToolTip( qtr("Zoom playlist") ); - CONNECT( zoomSlider, valueChanged( int ), model, changeZoom( int ) ); - topbarLayout->addWidget( zoomSlider ); - /* Connect the activation of the selector to a redefining of the PL */ DCONNECT( selector, categoryActivated( playlist_item_t *, bool ), mainView, setRoot( playlist_item_t *, bool ) );