Mercurial > hg > easyhg
diff filestatuswidget.cpp @ 99:a5a2d74a83a7
* Minor text and layout changes; ensure path widgets are updated when repo changes
author | Chris Cannam |
---|---|
date | Wed, 24 Nov 2010 17:29:31 +0000 |
parents | d1be9712818a |
children | 0dc7305acbc8 |
line wrap: on
line diff
--- a/filestatuswidget.cpp Wed Nov 24 17:11:44 2010 +0000 +++ b/filestatuswidget.cpp Wed Nov 24 17:29:31 2010 +0000 @@ -49,6 +49,8 @@ layout->setColumnStretch(1, 20); + layout->addItem(new QSpacerItem(5, 8), ++row, 0); + QMap<FileStates::State, QString> labels; labels[FileStates::Clean] = tr("Unmodified files:"); labels[FileStates::Modified] = tr("Modified files:"); @@ -64,6 +66,7 @@ QWidget *box = new QWidget; QGridLayout *boxlayout = new QGridLayout; + boxlayout->setMargin(0); box->setLayout(boxlayout); boxlayout->addWidget(new QLabel(labels[s]), 0, 0);