소스 검색

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.
Lennon Donaghy 3 년 전
부모
커밋
c1b0931d2e
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      Userland/DevTools/HackStudio/HackStudioWidget.cpp

+ 2 - 1
Userland/DevTools/HackStudio/HackStudioWidget.cpp

@@ -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();