diff options
| author | Peter Penz <[email protected]> | 2008-08-26 23:01:56 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2008-08-26 23:01:56 +0000 |
| commit | ae5b5eb9dcb0e2d696591000331f7fa048395a4b (patch) | |
| tree | 46d3c15634b2896f45081eceb02f1ca91875b367 /src/iconsizegroupbox.cpp | |
| parent | ca7aaecbdbddb27f7442e69d2770b97b4307f338 (diff) | |
* align labels on the right like suggested in the KDE 4 HIG
* minor changes in detailsview settings and columnview settings
svn path=/trunk/KDE/kdebase/apps/; revision=852982
Diffstat (limited to 'src/iconsizegroupbox.cpp')
| -rw-r--r-- | src/iconsizegroupbox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/iconsizegroupbox.cpp b/src/iconsizegroupbox.cpp index 8f6c24086..d532f340f 100644 --- a/src/iconsizegroupbox.cpp +++ b/src/iconsizegroupbox.cpp @@ -45,9 +45,9 @@ IconSizeGroupBox::IconSizeGroupBox(QWidget* parent) : this, SIGNAL(defaultSizeChanged(int))); QGridLayout* layout = new QGridLayout(this); - layout->addWidget(defaultLabel, 0, 0); + layout->addWidget(defaultLabel, 0, 0, Qt::AlignRight); layout->addWidget(m_defaultSizeSlider, 0, 1); - layout->addWidget(previewLabel, 1, 0); + layout->addWidget(previewLabel, 1, 0, Qt::AlignRight); layout->addWidget(m_previewSizeSlider, 1, 1); } |
