mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
HackStudio: Make Files and Classes tabs have the same border width
This is something I messed up, back in
77ad0fdb07
. Oops!
This commit is contained in:
parent
2d50dee920
commit
aeed1e04ca
1 changed files with 2 additions and 2 deletions
|
@ -1389,13 +1389,13 @@ void HackStudioWidget::create_project_tab(GUI::Widget& parent)
|
|||
m_project_tab->set_tab_position(TabPosition::Bottom);
|
||||
|
||||
auto& tree_view_container = m_project_tab->add_tab<GUI::Widget>("Files"_string);
|
||||
tree_view_container.set_layout<GUI::VerticalBoxLayout>(GUI::Margins {}, 2);
|
||||
tree_view_container.set_layout<GUI::VerticalBoxLayout>();
|
||||
|
||||
m_project_tree_view = tree_view_container.add<GUI::TreeView>();
|
||||
configure_project_tree_view();
|
||||
|
||||
auto& class_view_container = m_project_tab->add_tab<GUI::Widget>("Classes"_string);
|
||||
class_view_container.set_layout<GUI::VerticalBoxLayout>(2);
|
||||
class_view_container.set_layout<GUI::VerticalBoxLayout>();
|
||||
|
||||
m_class_view = class_view_container.add<ClassViewWidget>();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue