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
This commit is contained in:
Shaun Reich 2009-02-17 16:40:59 +00:00
parent 24a5c2de21
commit 02aa3f8ea0

View file

@ -122,11 +122,11 @@ ViewPropertiesDialog::ViewPropertiesDialog(DolphinView* dolphinView) :
// m_sorting->addItem(i18nc("@item:inlistbox Sort", "By Tags")); // m_sorting->addItem(i18nc("@item:inlistbox Sort", "By Tags"));
// } // }
#endif #endif
m_showPreview = new QCheckBox(i18nc("@option:check", "Show preview"), propsBox); m_showPreview = new QCheckBox(i18nc("@option:check", "Show preview"));
m_showInGroups = new QCheckBox(i18nc("@option:check", "Show in groups"), propsBox); m_showInGroups = new QCheckBox(i18nc("@option:check", "Show in groups"));
m_showHiddenFiles = new QCheckBox(i18nc("@option:check", "Show hidden files"), propsBox); 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(); QHBoxLayout* sortingLayout = new QHBoxLayout();
sortingLayout->setMargin(0); sortingLayout->setMargin(0);