1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:57:35 +00:00

Applications: Make a few of the larger Toolbars collapsible

Some Toolbars for FileManager, FontEditor and PixelPaint can now
collapse on resize.
This commit is contained in:
thankyouverycool 2022-07-27 08:14:28 -04:00 committed by Andreas Kling
parent 97b381652a
commit 7537a045e5
3 changed files with 3 additions and 0 deletions

View file

@ -43,6 +43,7 @@ ToolboxWidget::ToolboxWidget()
m_action_group.set_unchecking_allowed(false);
m_toolbar = add<GUI::Toolbar>(Gfx::Orientation::Vertical);
m_toolbar->set_collapsible(true);
setup_tools();
}