From aeed1e04ca867ee45716d8e6f52fe13f6e8434f0 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Tue, 16 Jan 2024 14:11:58 +0000 Subject: [PATCH] HackStudio: Make Files and Classes tabs have the same border width This is something I messed up, back in 77ad0fdb0726aba2ecaf7ea9764a642671d1fd6f. Oops! --- Userland/DevTools/HackStudio/HackStudioWidget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/DevTools/HackStudio/HackStudioWidget.cpp b/Userland/DevTools/HackStudio/HackStudioWidget.cpp index 392ea37951..d2f30d6140 100644 --- a/Userland/DevTools/HackStudio/HackStudioWidget.cpp +++ b/Userland/DevTools/HackStudio/HackStudioWidget.cpp @@ -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("Files"_string); - tree_view_container.set_layout(GUI::Margins {}, 2); + tree_view_container.set_layout(); m_project_tree_view = tree_view_container.add(); configure_project_tree_view(); auto& class_view_container = m_project_tab->add_tab("Classes"_string); - class_view_container.set_layout(2); + class_view_container.set_layout(); m_class_view = class_view_container.add();