1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:37:35 +00:00

LibGUI: Add transient option to show dotfiles in FilePicker

This is particularly useful when wanting to open files in ~/.config
from the Text Editor. The option is currently not persistent, but could
be hooked into File Manager's configuration.
This commit is contained in:
Timothy Flynn 2021-03-29 13:26:28 -04:00 committed by Andreas Kling
parent e17d4f8736
commit b88de8a91f
2 changed files with 14 additions and 0 deletions

View file

@ -83,6 +83,7 @@ private:
RefPtr<TextBox> m_filename_textbox;
RefPtr<TextBox> m_location_textbox;
RefPtr<Menu> m_context_menu;
Mode m_mode { Mode::Open };
};