From 4919b926f48ea43e625186597efefc28f02b459a Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 14 Mar 2019 19:24:08 +0100 Subject: [PATCH] About: Oops, fill the window with background color. --- Applications/About/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Applications/About/main.cpp b/Applications/About/main.cpp index 69bdf87d41..b98b4ca496 100644 --- a/Applications/About/main.cpp +++ b/Applications/About/main.cpp @@ -18,6 +18,7 @@ int main(int argc, char** argv) auto* widget = new GWidget; window->set_main_widget(widget); + widget->set_fill_with_background_color(true); widget->set_layout(make(Orientation::Vertical)); widget->layout()->set_margins({ 0, 8, 0, 8 }); widget->layout()->set_spacing(8);