1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:47:45 +00:00

Browser: Don't show frame around the web view in full-screen mode

Let's use all the space we have available. :^)
This commit is contained in:
Andreas Kling 2021-02-16 19:53:47 +01:00
parent 5ddf7e993c
commit 36354406db
2 changed files with 10 additions and 4 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -288,6 +288,12 @@ Tab::Tab(Type type)
tab_widget->set_bar_visible(!is_fullscreen && tab_widget->children().size() > 1);
m_toolbar_container->set_visible(!is_fullscreen);
m_statusbar->set_visible(!is_fullscreen);
if (is_fullscreen) {
view().set_frame_thickness(0);
} else {
view().set_frame_thickness(2);
}
},
this));
@ -534,7 +540,7 @@ void Tab::context_menu_requested(const Gfx::IntPoint& screen_position)
m_tab_context_menu->popup(screen_position);
}
GUI::Widget& Tab::view()
GUI::ScrollableWidget& Tab::view()
{
if (m_type == Type::InProcessWebView)
return *m_page_view;