diff options
Diffstat (limited to 'DevTools/HackStudio/HackStudioWidget.cpp')
-rw-r--r-- | DevTools/HackStudio/HackStudioWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |