diff options
author | Andreas Kling <kling@serenityos.org> | 2021-01-04 23:59:22 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-04 23:59:22 +0100 |
commit | 32c319ba819753c1ae70ea168b3aed96f0936ada (patch) | |
tree | e8b56c17d7cb3b53ff908b99ccb16eaef6b34507 /DevTools | |
parent | 737504464a739feddf4b3e64a1a29a05f22a8007 (diff) | |
download | serenity-32c319ba819753c1ae70ea168b3aed96f0936ada.zip |
HackStudio: Make the title bar say "Hack Studio" too..
Diffstat (limited to 'DevTools')
-rw-r--r-- | DevTools/HackStudio/HackStudioWidget.cpp | 2 | ||||
-rw-r--r-- | DevTools/HackStudio/main.cpp | 2 |
2 files changed, 2 insertions, 2 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); 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<HackStudioWidget>(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); |