From 2c2aeef040bfdfe1f10d9a7ef51affb40880ad75 Mon Sep 17 00:00:00 2001 From: Jari Jarvi Date: Tue, 29 Jun 2010 12:00:29 +0300 Subject: [PATCH] Fixed previous SettingsDlg layout fix --- src/settingsdlg.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/settingsdlg.cpp b/src/settingsdlg.cpp index c721f49..1be79bb 100644 --- a/src/settingsdlg.cpp +++ b/src/settingsdlg.cpp @@ -16,8 +16,8 @@ SettingsDlg::SettingsDlg(QWidget *parent) { QSettings settings(this); m_layout = new QVBoxLayout(this); - m_btnLayout = new QHBoxLayout(m_layout); - m_remoteNameLayout = new QHBoxLayout(m_layout); + m_btnLayout = new QHBoxLayout(); + m_remoteNameLayout = new QHBoxLayout(); m_advSettingsBtn = new QPushButton(tr("Advanced"), this); m_selectRemoteBtn = new QPushButton(tr("Select remote"), this); @@ -57,6 +57,8 @@ SettingsDlg::SettingsDlg(QWidget *parent) connect(m_rateDownBtn, SIGNAL(clicked()), this, SLOT(rateDownClicked())); + m_layout->addLayout(m_remoteNameLayout); + m_layout->addLayout(m_btnLayout); this->setLayout(m_layout); QString selectedRemote = QSettings(this).value("remoteName", "").toString(); -- 1.7.9.5