summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-05-16 14:06:55 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-05-16 14:06:55 +0200
commit07df2fa7ecd12db4a6f8b0637c944aa47db66fe8 (patch)
treefb76df2022fb95dbb26c057bb402a61d22165bc3
parentee363faf102becd916090c8b37e03e2a22b0633f (diff)
downloadserenity-07df2fa7ecd12db4a6f8b0637c944aa47db66fe8.zip
GFilePicker: Remove the frame around the little toolbar.
-rw-r--r--LibGUI/GFilePicker.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/LibGUI/GFilePicker.cpp b/LibGUI/GFilePicker.cpp
index 735fb26eed..22d27fc016 100644
--- a/LibGUI/GFilePicker.cpp
+++ b/LibGUI/GFilePicker.cpp
@@ -33,6 +33,7 @@ GFilePicker::GFilePicker(const String& path, CObject* parent)
auto* toolbar = new GToolBar(upper_container);
toolbar->set_size_policy(SizePolicy::Fixed, SizePolicy::Fill);
toolbar->set_preferred_size({ 60, 0 });
+ toolbar->set_has_frame(false);
auto* location_textbox = new GTextBox(upper_container);
location_textbox->set_size_policy(SizePolicy::Fill, SizePolicy::Fixed);