Skip to content

Commit

Permalink
force showing hidden files/folders until we make them configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
eranif committed Apr 8, 2024
1 parent fc90bea commit d2ade46
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Plugin/clTreeCtrlPanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -926,6 +926,9 @@ void clTreeCtrlPanel::OnInitDone(wxCommandEvent& event)
if (GetConfig()) {
wxArrayString pinnedFolders;
m_options = GetConfig()->Read("FileExplorer/Options", m_options);
m_options |= kShowHiddenFiles;
m_options |= kShowHiddenFolders;

pinnedFolders = GetConfig()->Read("ExplorerFolders", pinnedFolders);
for (size_t i = 0; i < pinnedFolders.size(); ++i) {
AddFolder(pinnedFolders.Item(i));
Expand Down

0 comments on commit d2ade46

Please sign in to comment.