Mercurial > hg > easyhg
diff filestatuswidget.cpp @ 297:e4284fab6962 status_outside_tabs
Minor layout updates
author | Chris Cannam |
---|---|
date | Tue, 22 Feb 2011 13:12:16 +0000 |
parents | 3fbafca196e4 |
children | 1aba0914dcfc |
line wrap: on
line diff
--- a/filestatuswidget.cpp Tue Feb 22 13:03:03 2011 +0000 +++ b/filestatuswidget.cpp Tue Feb 22 13:12:16 2011 +0000 @@ -44,7 +44,7 @@ m_noModificationsLabel = new QLabel; setNoModificationsLabelText(); - layout->addWidget(m_noModificationsLabel, row, 1, 1, 2); + layout->addWidget(m_noModificationsLabel, row, 0); m_noModificationsLabel->hide(); m_simpleLabels[FileStates::Clean] = tr("Unmodified:"); @@ -75,7 +75,7 @@ "have appeared since your most recent commit or update."); m_boxesParent = new QWidget(this); - layout->addWidget(m_boxesParent, ++row, 0, 1, 3); + layout->addWidget(m_boxesParent, ++row, 0); QGridLayout *boxesLayout = new QGridLayout; boxesLayout->setMargin(0); @@ -120,7 +120,7 @@ layout->addItem(new QSpacerItem(8, 8), ++row, 0); m_showAllFiles = new QCheckBox(tr("Show all files"), this); - layout->addWidget(m_showAllFiles, ++row, 0, 1, 3, Qt::AlignLeft); + layout->addWidget(m_showAllFiles, ++row, 0, Qt::AlignLeft); connect(m_showAllFiles, SIGNAL(toggled(bool)), this, SIGNAL(showAllChanged(bool))); }