1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 07:49:42 +01:00

* Add layout-stretch to make sure config buttons always stay at the bottom.

This commit is contained in:
Christian Muehlhaeuser 2014-10-11 02:58:27 +02:00
parent 59e8aecf25
commit eb2b9ecd76

View File

@ -35,6 +35,7 @@ DelegateConfigWrapper::DelegateConfigWrapper( AccountConfigWidget* conf, QWidget
QVBoxLayout* v = new QVBoxLayout( this );
v->setContentsMargins( 0, 0, 0, 0 );
v->addWidget( m_widget );
v->addStretch();
QDialogButtonBox::StandardButtons buttons = QDialogButtonBox::Ok | QDialogButtonBox::Cancel;
if ( m_aboutW )