summaryrefslogtreecommitdiff
path: root/Applications/TextEditor/main.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-03-10 13:16:36 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-03-10 13:16:36 +0100
commit5d69bf06d231cb3fee25f79065461198dbb8cb53 (patch)
tree7a4490c16dfbe95f217b8b908c507130c515777a /Applications/TextEditor/main.cpp
parent6836e21d1c9e1e9b00b5f87ac988d2f2a7639796 (diff)
downloadserenity-5d69bf06d231cb3fee25f79065461198dbb8cb53.zip
LibGUI: Don't fill widgets with background color by defualt.
Diffstat (limited to 'Applications/TextEditor/main.cpp')
-rw-r--r--Applications/TextEditor/main.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Applications/TextEditor/main.cpp b/Applications/TextEditor/main.cpp
index d6bb29b676..78d9f16993 100644
--- a/Applications/TextEditor/main.cpp
+++ b/Applications/TextEditor/main.cpp
@@ -19,7 +19,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);