From 1cd8f437db169179dce7f9c73987b15aaaf2f7f0 Mon Sep 17 00:00:00 2001 From: Sergey Svistunov Date: Mon, 26 Jun 2023 17:17:15 +0300 Subject: [PATCH] Fixed bug --- Source/Gui/Dialogs/WizardDlg.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Gui/Dialogs/WizardDlg.cpp b/Source/Gui/Dialogs/WizardDlg.cpp index 3e710ce2..4d4676ac 100644 --- a/Source/Gui/Dialogs/WizardDlg.cpp +++ b/Source/Gui/Dialogs/WizardDlg.cpp @@ -2320,9 +2320,10 @@ void CWizardDlg::showLogWindowForFileName(CString fileName) { wnd->setFileNameFilter(fileName); wnd->setLogger(logger_.get()); wnd->TranslateUI(); - logWindowsByFileName_[fileName] = std::move(wnd); + wnd->reloadList(); wnd->Show(); + logWindowsByFileName_[fileName] = std::move(wnd); } LRESULT CWizardDlg::OnTimer(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) {