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
Notes: sideshowbarker 2024-07-19 14:06:22 +09:00

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