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

Presenter: Disable actions when there is no loaded presentation

This commit is contained in:
Joao Luz 2023-01-18 20:24:06 -03:00 committed by Linus Groh
parent da1706d697
commit 18d72ed3fd
2 changed files with 22 additions and 11 deletions

View file

@ -46,4 +46,6 @@ 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;
};