From: Shaun Reich Date: Tue, 17 Feb 2009 16:40:59 +0000 (+0000) Subject: The tab order of the View Properties Dialog now moves in a logical and coherent manne... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/02aa3f8ea0317d37a595f5db0e5ab3efb3c8b953 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 --- 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);