┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNate Graham <[email protected]>2021-01-25 10:25:51 -0700
committerNate Graham <[email protected]>2021-01-25 10:25:51 -0700
commitc161b895ffd8d62371ec288cf4105386350a8a3c (patch)
tree46d394aea649edab0afda8edc89be95252ebadd4 /src
parentbe73a01f48ac722c14ecaab5ac391b199f04aae7 (diff)
parent5ed12ed44a7169855d46486d17c3e18697c3c4ae (diff)
Merge branch 'release/20.12'
Diffstat (limited to 'src')
-rw-r--r--src/dolphinmainwindow.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp
index 881616480..bbb809cce 100644
--- a/src/dolphinmainwindow.cpp
+++ b/src/dolphinmainwindow.cpp
@@ -257,7 +257,11 @@ bool DolphinMainWindow::isFoldersPanelEnabled() const
bool DolphinMainWindow::isInformationPanelEnabled() const
{
+#ifdef HAVE_BALOO
return actionCollection()->action(QStringLiteral("show_information_panel"))->isChecked();
+#else
+ return false;
+#endif
}
void DolphinMainWindow::openFiles(const QStringList& files, bool splitView)