From eb2b9ecd768e5ab63aa9654abd71c0e8597785a4 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Sat, 11 Oct 2014 02:58:27 +0200 Subject: [PATCH] * Add layout-stretch to make sure config buttons always stay at the bottom. --- src/libtomahawk/accounts/DelegateConfigWrapper.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libtomahawk/accounts/DelegateConfigWrapper.cpp b/src/libtomahawk/accounts/DelegateConfigWrapper.cpp index 40e7be1f8..e0c34937a 100644 --- a/src/libtomahawk/accounts/DelegateConfigWrapper.cpp +++ b/src/libtomahawk/accounts/DelegateConfigWrapper.cpp @@ -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 )