┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.cpp
diff options
context:
space:
mode:
authorFrank Reininghaus <[email protected]>2014-07-16 09:16:24 +0200
committerFrank Reininghaus <[email protected]>2014-07-16 09:16:24 +0200
commitabd114f710b9d1247ecea4a82fb338492e9caf78 (patch)
tree307372d81acfd8e62d2e6dd2cb8e145d2b8e6e88 /src/dolphinmainwindow.cpp
parentebae39319037d35ac33f5ccc2a7f5579255207a5 (diff)
parent7cb193de1074e226b6fb3fe0f71da577b54f3589 (diff)
Merge branch 'KDE/4.14'
Diffstat (limited to 'src/dolphinmainwindow.cpp')
-rw-r--r--src/dolphinmainwindow.cpp3
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);
}
}