diff options
| author | Sebastian Doerner <[email protected]> | 2011-01-08 19:08:49 +0000 |
|---|---|---|
| committer | Sebastian Doerner <[email protected]> | 2011-01-08 19:08:49 +0000 |
| commit | 6866686dd2688d936fe9ff8b8784cc3e433a5b45 (patch) | |
| tree | df52a3e0439f50df94b09996f7beed4d57a485c6 | |
| parent | d257bcb21cfab0adce61f77152d01bdc8b492c08 (diff) | |
Fix sanity check in toggleViews()
svn path=/trunk/KDE/kdebase/apps/; revision=1212950
| -rw-r--r-- | src/dolphinmainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index bc5641e1e..1e60bb980 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -220,7 +220,7 @@ void DolphinMainWindow::openFiles(const QList<KUrl>& files) void DolphinMainWindow::toggleViews() { - if (m_viewTab[m_tabIndex].primaryView == 0) { + if (m_viewTab[m_tabIndex].secondaryView == 0) { return; } |
