1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-01 20:00:13 +02:00

Add spacing before download button.

This commit is contained in:
Christian Muehlhaeuser
2015-06-23 14:57:34 +02:00
parent 0eff658b65
commit f94949fe4a

View File

@@ -137,6 +137,8 @@ BasicHeader::addButton( const QString& text )
{ {
QPushButton* button = new QPushButton( this ); QPushButton* button = new QPushButton( this );
button->setText( text ); button->setText( text );
ui->horizontalLayout->addSpacing( 8 );
ui->horizontalLayout->addWidget( button ); ui->horizontalLayout->addWidget( button );
return button; return button;