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

HackStudio: Open projects after the action tab was created

This change also removes the path argument from the GitWidget
constructor because otherwise, the app wouldn't work now, as it doesn't
yet know the project path.

But it'll be set right away in open_project(), so nothing's lost. :^)
This commit is contained in:
Karol Kosek 2022-12-22 12:55:11 +01:00 committed by Andreas Kling
parent 661c02b914
commit 98fa3736ed
3 changed files with 10 additions and 12 deletions

View file

@ -22,8 +22,7 @@
namespace HackStudio {
GitWidget::GitWidget(DeprecatedString const& repo_root)
: m_repo_root(repo_root)
GitWidget::GitWidget()
{
set_layout<GUI::HorizontalBoxLayout>();