1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 02:13:56 +09: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
Notes: sideshowbarker 2024-07-18 20:58:38 +09:00
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 };
};