1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:08:10 +00:00

TextEditor: Add option to open the current file in File Manager

This change adds functionality to open the current file in the File
Manager from the File menu or through a button on the toolbar. If
there is no saved data then the functionality is disabled.
This commit is contained in:
Kampsjaak 2022-12-23 13:13:42 +01:00 committed by Tim Flynn
parent c2655d3733
commit cf47c850e7
2 changed files with 16 additions and 0 deletions

View file

@ -71,6 +71,7 @@ private:
RefPtr<GUI::Action> m_open_action;
RefPtr<GUI::Action> m_save_action;
RefPtr<GUI::Action> m_save_as_action;
RefPtr<GUI::Action> m_open_folder_action;
RefPtr<GUI::Action> m_find_replace_action;
RefPtr<GUI::Action> m_vim_emulation_setting_action;