1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-01-18 23:17:59 +01: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 );
button->setText( text );
ui->horizontalLayout->addSpacing( 8 );
ui->horizontalLayout->addWidget( button );
return button;