1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:28:10 +00:00

HackStudio: Properly clear previous editor tabs when closing project

Before this commit the close tab button, which is meant to only
show when more than one tab is open, would be present on the tab
of a new project opened after the first project.

This was due to m_all_editor_tab_widgets not being cleared when closing
the first project. This is now cleared when close_current_project() is
called.
This commit is contained in:
Lennon Donaghy 2022-06-20 18:06:31 +01:00 committed by Sam Atkins
parent d2aafe58c9
commit c1b0931d2e

View file

@ -1543,8 +1543,9 @@ void HackStudioWidget::stop_debugger_if_running()
void HackStudioWidget::close_current_project()
{
m_editors_splitter->remove_all_children();
add_new_editor_tab_widget(*m_editors_splitter);
m_all_editor_tab_widgets.clear();
m_all_editor_wrappers.clear();
add_new_editor_tab_widget(*m_editors_splitter);
m_open_files.clear();
m_open_files_vector.clear();
m_find_in_files_widget->reset();