diff options
author | Itamar <itamar8910@gmail.com> | 2021-12-20 22:25:52 +0200 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2021-12-22 02:14:32 -0800 |
commit | 83dd1e5b801275dbad9f6171052f32db75f489d6 (patch) | |
tree | d6b212130225a6a2eb015927a3aadca658d5aeac /Userland/DevTools | |
parent | 4b2b0a4d0e6dce20b7b40139d0c7c666c5282708 (diff) | |
download | serenity-83dd1e5b801275dbad9f6171052f32db75f489d6.zip |
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.
Diffstat (limited to 'Userland/DevTools')
-rw-r--r-- | Userland/DevTools/HackStudio/HackStudioWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<FindInFilesWidget>("Find in files"); m_todo_entries_widget = m_action_tab_widget->add_tab<ToDoEntriesWidget>("TODO"); - m_terminal_wrapper = m_action_tab_widget->add_tab<TerminalWrapper>("Build", false); + m_terminal_wrapper = m_action_tab_widget->add_tab<TerminalWrapper>("Console", false); m_debug_info_widget = m_action_tab_widget->add_tab<DebugInfoWidget>("Debug"); m_debug_info_widget->on_backtrace_frame_selection = [this](Debug::DebugInfo::SourcePosition const& source_position) { |