1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-05 07:47:36 +00:00

GFilePicker: Remove the frame around the little toolbar.

This commit is contained in:
Andreas Kling 2019-05-16 14:06:55 +02:00
parent ee363faf10
commit 07df2fa7ec

View file

@ -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);