diff options
| author | Diego Iastrubni <[email protected]> | 2008-08-15 23:02:01 +0000 |
|---|---|---|
| committer | Diego Iastrubni <[email protected]> | 2008-08-15 23:02:01 +0000 |
| commit | 3c57174a787d110e40d8fab0015a3c76f7229a98 (patch) | |
| tree | 20a2b2eb772fde67895d653a7e7721d193788e19 /src/filterbar.cpp | |
| parent | 5fc9514e6552a3af71c06e67b456f29601e022a9 (diff) | |
For the URL control of Dolphin and Konqueror to be LTR on RTL desktops (those are URLs, and are not affected by the direction of the desktop).
Force the filterbar of Dolphin to be LTR as well, as again it deals with files/directories which are english/latin letters most of the time.
svn path=/trunk/KDE/kdebase/apps/; revision=847671
Diffstat (limited to 'src/filterbar.cpp')
| -rw-r--r-- | src/filterbar.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/filterbar.cpp b/src/filterbar.cpp index a4284a8b5..080dd423f 100644 --- a/src/filterbar.cpp +++ b/src/filterbar.cpp @@ -45,6 +45,7 @@ FilterBar::FilterBar(QWidget* parent) : hLayout->addSpacing(KDialog::spacingHint()); m_filterInput = new KLineEdit(this); + m_filterInput->setLayoutDirection(Qt::LeftToRight); m_filterInput->setClearButtonShown(true); m_filter->setBuddy(m_filterInput); hLayout->addWidget(m_filterInput); |
