1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:07:36 +00:00

Presenter: Add a "View" menu

It didn't really make sense for "Toggle Full Screen" to be under
"Presentation", and now there's a place for any future view-related
actions.
This commit is contained in:
Caoimhe 2023-03-19 19:59:49 +00:00 committed by Andreas Kling
parent f2df495970
commit 72a45799e0
2 changed files with 10 additions and 6 deletions

View file

@ -46,6 +46,7 @@ private:
OwnPtr<Presentation> m_current_presentation;
RefPtr<GUI::Action> m_next_slide_action;
RefPtr<GUI::Action> m_previous_slide_action;
RefPtr<GUI::Action> m_full_screen_action;
RefPtr<GUI::Action> m_present_from_first_slide_action;
RefPtr<GUI::Action> m_full_screen_action;
};