1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-06 14:16:32 +02:00

* Fixed TWK-887: Make WelcomeWidget's children not collapsible.

This commit is contained in:
Christian Muehlhaeuser
2012-11-14 08:06:02 +01:00
parent b6cc52f7c9
commit 96bf4650d0

View File

@@ -96,8 +96,11 @@ WelcomeWidget::WelcomeWidget( QWidget* parent )
, ui( new Ui::WelcomeWidget ) , ui( new Ui::WelcomeWidget )
{ {
ui->setupUi( this ); ui->setupUi( this );
ui->splitter_2->setStretchFactor( 0, 3 ); ui->splitter_2->setStretchFactor( 0, 3 );
ui->splitter_2->setStretchFactor( 1, 1 ); ui->splitter_2->setStretchFactor( 1, 1 );
ui->splitter->setChildrenCollapsible( false );
ui->splitter_2->setChildrenCollapsible( false );
RecentPlaylistsModel* model = new RecentPlaylistsModel( HISTORY_PLAYLIST_ITEMS, this ); RecentPlaylistsModel* model = new RecentPlaylistsModel( HISTORY_PLAYLIST_ITEMS, this );
@@ -384,7 +387,7 @@ PlaylistWidget::PlaylistWidget( QWidget* parent )
: QListView( parent ) : QListView( parent )
{ {
m_overlay = new OverlayWidget( this ); m_overlay = new OverlayWidget( this );
LoadingSpinner* spinner = new LoadingSpinner( this ); /* LoadingSpinner* spinner = */ new LoadingSpinner( this );
} }