diff options
| author | Shaun Reich <[email protected]> | 2009-02-17 16:40:59 +0000 |
|---|---|---|
| committer | Shaun Reich <[email protected]> | 2009-02-17 16:40:59 +0000 |
| commit | 02aa3f8ea0317d37a595f5db0e5ab3efb3c8b953 (patch) | |
| tree | a5dd782ba5d78e71c453d55f2266293633fbdf70 /src/settings | |
| parent | 24a5c2de21d7b09bb3ca323c12c716bdc67b3e64 (diff) | |
The tab order of the View Properties Dialog now moves in a logical and coherent manner (it no longer skips out of order).
svn path=/trunk/KDE/kdebase/apps/; revision=927483
Diffstat (limited to 'src/settings')
| -rw-r--r-- | src/settings/viewpropertiesdialog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/settings/viewpropertiesdialog.cpp b/src/settings/viewpropertiesdialog.cpp index 438bf74fb..f407f7c90 100644 --- a/src/settings/viewpropertiesdialog.cpp +++ b/src/settings/viewpropertiesdialog.cpp @@ -122,11 +122,11 @@ ViewPropertiesDialog::ViewPropertiesDialog(DolphinView* dolphinView) : // m_sorting->addItem(i18nc("@item:inlistbox Sort", "By Tags")); // } #endif - m_showPreview = new QCheckBox(i18nc("@option:check", "Show preview"), propsBox); - m_showInGroups = new QCheckBox(i18nc("@option:check", "Show in groups"), propsBox); - m_showHiddenFiles = new QCheckBox(i18nc("@option:check", "Show hidden files"), propsBox); + m_showPreview = new QCheckBox(i18nc("@option:check", "Show preview")); + m_showInGroups = new QCheckBox(i18nc("@option:check", "Show in groups")); + m_showHiddenFiles = new QCheckBox(i18nc("@option:check", "Show hidden files")); - m_additionalInfo = new QPushButton(i18nc("@action:button", "Additional Information"), propsBox); + m_additionalInfo = new QPushButton(i18nc("@action:button", "Additional Information")); QHBoxLayout* sortingLayout = new QHBoxLayout(); sortingLayout->setMargin(0); |
