diff options
| author | Peter Penz <[email protected]> | 2006-12-13 08:03:38 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2006-12-13 08:03:38 +0000 |
| commit | dd8158e70751d815305b50e3458835fce9e1574a (patch) | |
| tree | ff82cb20740f1ecba27b47f50ec3894c13b9e361 /src/dolphinmainwindow.cpp | |
| parent | 163fa7ce30c0bd1b18d0c750bf9358560c2db7af (diff) | |
Don't show the 'Show Preview' property inside the toolbar per default.
svn path=/trunk/playground/utils/dolphin/; revision=613031
Diffstat (limited to 'src/dolphinmainwindow.cpp')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 6f6e2fb47..0c527bb51 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -1267,8 +1267,7 @@ void DolphinMainWindow::setupActions() KToggleAction* sortDescending = new KToggleAction(i18n("Descending"), actionCollection(), "descending"); connect(sortDescending, SIGNAL(triggered()), this, SLOT(toggleSortOrder())); - KToggleAction* showPreview = new KToggleAction(i18n("Preview"), actionCollection(), "show_preview"); - showPreview->setIcon(KIcon("gvdirpart")); + KToggleAction* showPreview = new KToggleAction(i18n("Show Preview"), actionCollection(), "show_preview"); connect(showPreview, SIGNAL(triggered()), this, SLOT(togglePreview())); KToggleAction* showHiddenFiles = new KToggleAction(i18n("Show Hidden Files"), actionCollection(), "show_hidden_files"); |
