diff --git a/modules/gui/qt4/components/playlist/playlist.cpp b/modules/gui/qt4/components/playlist/playlist.cpp index f857d18f5f27df79cad9668c571cee3e426003d1..79fb57f9e483a3eed17a83bc004db327d808ae4b 100644 --- a/modules/gui/qt4/components/playlist/playlist.cpp +++ b/modules/gui/qt4/components/playlist/playlist.cpp @@ -47,11 +47,8 @@ PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i, QWidget *_par ) : QWidget( _par ), p_intf ( _p_i ) { -#ifndef Q_WS_MAC - setContentsMargins( 3, 3, 3, 3 ); -#else + setContentsMargins( 0, 3, 0, 3 ); -#endif QGridLayout *layout = new QGridLayout( this ); diff --git a/modules/gui/qt4/components/playlist/selector.cpp b/modules/gui/qt4/components/playlist/selector.cpp index 88a4e519c59e89202828f5c5d98ebf529c17ea77..8b49d49b382b76a7f10a9ad3c1962f153e8a407c 100644 --- a/modules/gui/qt4/components/playlist/selector.cpp +++ b/modules/gui/qt4/components/playlist/selector.cpp @@ -141,8 +141,8 @@ PLSelector::PLSelector( QWidget *p, intf_thread_t *_p_intf ) /* select the first item */ // view->setCurrentIndex( model->index( 0, 0, QModelIndex() ) ); - setAutoFillBackground( true ); #ifdef Q_WS_MAC + setAutoFillBackground( true ); QPalette palette; palette.setColor( QPalette::Window, QColor(209,215,226) ); setPalette( palette );