From 83dd1e5b801275dbad9f6171052f32db75f489d6 Mon Sep 17 00:00:00 2001 From: Itamar Date: Mon, 20 Dec 2021 22:25:52 +0200 Subject: [PATCH] HackStudio: Rename "Build" tab to "Console" The TerminalWrapper in this tab is not only used for displaying build output, so "Console" would be a better name. --- Userland/DevTools/HackStudio/HackStudioWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/DevTools/HackStudio/HackStudioWidget.cpp b/Userland/DevTools/HackStudio/HackStudioWidget.cpp index 8f5c9dc7d6..320fdcca98 100644 --- a/Userland/DevTools/HackStudio/HackStudioWidget.cpp +++ b/Userland/DevTools/HackStudio/HackStudioWidget.cpp @@ -1081,7 +1081,7 @@ void HackStudioWidget::create_action_tab(GUI::Widget& parent) m_find_in_files_widget = m_action_tab_widget->add_tab("Find in files"); m_todo_entries_widget = m_action_tab_widget->add_tab("TODO"); - m_terminal_wrapper = m_action_tab_widget->add_tab("Build", false); + m_terminal_wrapper = m_action_tab_widget->add_tab("Console", false); m_debug_info_widget = m_action_tab_widget->add_tab("Debug"); m_debug_info_widget->on_backtrace_frame_selection = [this](Debug::DebugInfo::SourcePosition const& source_position) {