diff --git a/Userland/Applications/Presenter/PresenterWidget.cpp b/Userland/Applications/Presenter/PresenterWidget.cpp index f2377d3200..52d3bf7719 100644 --- a/Userland/Applications/Presenter/PresenterWidget.cpp +++ b/Userland/Applications/Presenter/PresenterWidget.cpp @@ -100,8 +100,17 @@ ErrorOr PresenterWidget::initialize_menubar() auto* window = this->window(); window->set_fullscreen(!window->is_fullscreen()); }); + m_resize_to_fit_content_action = GUI::Action::create("Resize to Fit &Content", { KeyModifier::Mod_Alt, KeyCode::Key_C }, TRY(Gfx::Bitmap::load_from_file("/res/icons/16x16/scale.png"sv)), [this](auto&) { + if (m_current_presentation) { + auto presentation_size = m_current_presentation->normative_size(); + auto* window = this->window(); + + window->resize(window->size().match_aspect_ratio(presentation_size.aspect_ratio(), Orientation::Horizontal)); + } + }); TRY(view_menu->try_add_action(*m_full_screen_action)); + TRY(view_menu->try_add_action(*m_resize_to_fit_content_action)); update_slides_actions(); diff --git a/Userland/Applications/Presenter/PresenterWidget.h b/Userland/Applications/Presenter/PresenterWidget.h index 45c2958395..b23795685e 100644 --- a/Userland/Applications/Presenter/PresenterWidget.h +++ b/Userland/Applications/Presenter/PresenterWidget.h @@ -49,4 +49,5 @@ private: RefPtr m_present_from_first_slide_action; RefPtr m_full_screen_action; + RefPtr m_resize_to_fit_content_action; };