1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:18:12 +00:00

LibGUI: Remove unused Widget backcolor/forecolor properties

These were some leftovers from the VisualBuilder times.
This commit is contained in:
Andreas Kling 2020-12-30 02:16:53 +01:00
parent 96cd04f2ba
commit e07a66d011
3 changed files with 0 additions and 20 deletions

View file

@ -93,7 +93,6 @@ void DisplaySettingsWidget::create_frame()
auto& settings_content = m_root_widget->add<GUI::Widget>();
settings_content.set_layout<GUI::VerticalBoxLayout>();
settings_content.set_backcolor("red");
settings_content.set_background_color(Color::Blue);
settings_content.set_background_role(Gfx::ColorRole::Window);
settings_content.layout()->set_margins({ 4, 4, 4, 4 });