1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 10:27:36 +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
@ -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);