1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:48:11 +00:00

LibGUI: Don't fill widgets with background color by defualt.

This commit is contained in:
Andreas Kling 2019-03-10 13:16:36 +01:00
parent 6836e21d1c
commit 5d69bf06d2
14 changed files with 12 additions and 16 deletions

View file

@ -16,7 +16,6 @@ int main(int argc, char** argv)
GApplication app(argc, argv);
auto* widget = new GWidget;
widget->set_fill_with_background_color(false);
widget->set_layout(make<GBoxLayout>(Orientation::Vertical));
auto* toolbar = new GToolBar(widget);