diff options
| author | Frank Reininghaus <[email protected]> | 2014-07-16 09:16:24 +0200 |
|---|---|---|
| committer | Frank Reininghaus <[email protected]> | 2014-07-16 09:16:24 +0200 |
| commit | abd114f710b9d1247ecea4a82fb338492e9caf78 (patch) | |
| tree | 307372d81acfd8e62d2e6dd2cb8e145d2b8e6e88 /src/dolphinmainwindow.cpp | |
| parent | ebae39319037d35ac33f5ccc2a7f5579255207a5 (diff) | |
| parent | 7cb193de1074e226b6fb3fe0f71da577b54f3589 (diff) | |
Merge branch 'KDE/4.14'
Diffstat (limited to 'src/dolphinmainwindow.cpp')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 41bd626ee..b51389fd4 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -771,7 +771,8 @@ void DolphinMainWindow::togglePanelLockState() void DolphinMainWindow::slotPlacesPanelVisibilityChanged(bool visible) { foreach (DolphinTabPage* tabPage, m_viewTab) { - tabPage->setPlacesSelectorVisible(visible); + // The Places selector in the location bar should be shown if and only if the Places panel is hidden. + tabPage->setPlacesSelectorVisible(!visible); } } |
