1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:07:35 +00:00

LibGUI: Remove Window background color

The `m_background_color` field was not used anywhere. Both `Terminal`
and the `ColorPicker` widget invoked `set_background_color()` to no
avail.
This commit is contained in:
Jelle Raaijmakers 2022-01-31 00:17:32 +01:00 committed by Andreas Kling
parent 687276fc38
commit 48eecaad64
3 changed files with 0 additions and 7 deletions

View file

@ -137,7 +137,6 @@ public:
auto window = Window::construct();
window->set_main_widget(this);
window->set_has_alpha_channel(true);
window->set_background_color(Color::Transparent);
window->set_fullscreen(true);
window->set_frameless(true);
window->show();