Commit 9a6d4ec4 authored by Lukas Durfina's avatar Lukas Durfina Committed by Jean-Baptiste Kempf

Turn off sorting on startup fix of #1529

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 2848880a
......@@ -60,11 +60,12 @@ StandardPLPanel::StandardPLPanel( PlaylistWidget *_parent,
/* Create and configure the QTreeView */
view = new QVLCTreeView( 0 );
view->setSortingEnabled( true );
view->sortByColumn( -1, Qt::AscendingOrder );
view->setModel(model);
view->setIconSize( QSize( 20, 20 ) );
view->setAlternatingRowColors( true );
view->setAnimated( true );
view->setSortingEnabled( true );
view->setSelectionMode( QAbstractItemView::ExtendedSelection );
view->setDragEnabled( true );
view->setAcceptDrops( true );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment