From 608f6d7671d469ba816334812e1a56150b2fa15b Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Mon, 7 Feb 2022 18:47:58 +0100 Subject: [PATCH] Add support for accessing network shares Closes: https://github.com/neatdecisions/detwinner/issues/20 --- src/detwinner/ui/SearchOptionsPane.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detwinner/ui/SearchOptionsPane.cpp b/src/detwinner/ui/SearchOptionsPane.cpp index 4511022..7d938d5 100644 --- a/src/detwinner/ui/SearchOptionsPane.cpp +++ b/src/detwinner/ui/SearchOptionsPane.cpp @@ -35,7 +35,7 @@ SearchOptionsPane::SearchOptionsPane() : m_refActionShowHidden = m_refActionGroup->add_action_bool("showHiddenFiles", sigc::mem_fun(*this, &SearchOptionsPane::on_show_hidden_toggled)); m_refActionSearchMode = m_refActionGroup->add_action_radio_integer("searchMode", sigc::mem_fun(*this, &SearchOptionsPane::on_search_mode_changed), 0); - m_places.set_local_only(true); + m_places.set_local_only(false); m_places.set_show_trash(false); m_places.set_show_enter_location(false); m_places.set_show_other_locations(false);