diff --git a/DevTools/HackStudio/HackStudioWidget.cpp b/DevTools/HackStudio/HackStudioWidget.cpp index d5e05e89db..dbfd208e1d 100644 --- a/DevTools/HackStudio/HackStudioWidget.cpp +++ b/DevTools/HackStudio/HackStudioWidget.cpp @@ -247,7 +247,7 @@ void HackStudioWidget::open_file(const String& filename) if (m_currently_open_file.starts_with(m_project->root_path())) relative_file_path = m_currently_open_file.substring(m_project->root_path().length() + 1); - window()->set_title(String::formatted("{} - {} - HackStudio", relative_file_path, m_project->name())); + window()->set_title(String::formatted("{} - {} - Hack Studio", relative_file_path, m_project->name())); m_project_tree_view->update(); current_editor_wrapper().filename_label().set_text(filename); diff --git a/DevTools/HackStudio/main.cpp b/DevTools/HackStudio/main.cpp index c6e1db8854..2cb6706fc1 100644 --- a/DevTools/HackStudio/main.cpp +++ b/DevTools/HackStudio/main.cpp @@ -91,7 +91,7 @@ int main(int argc, char** argv) s_hack_studio_widget = s_window->set_main_widget(project_path); - s_window->set_title(String::formatted("{} - HackStudio", s_hack_studio_widget->project().name())); + s_window->set_title(String::formatted("{} - Hack Studio", s_hack_studio_widget->project().name())); auto menubar = GUI::MenuBar::construct(); s_hack_studio_widget->initialize_menubar(menubar);