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
Notes: sideshowbarker 2024-07-18 22:12:34 +09:00
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;

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
@ -74,7 +74,7 @@ public:
const String& title() const { return m_title; }
const Gfx::Bitmap* icon() const { return m_icon; }
GUI::Widget& view();
GUI::ScrollableWidget& view();
private:
explicit Tab(Type);