From ea0ee7fc0bf2d554fdeb92b7f8a5213870269ffe Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Mon, 27 May 2019 09:11:52 -0400 Subject: [PATCH] Fix inability to close the History window --- src/HistoryWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HistoryWindow.cpp b/src/HistoryWindow.cpp index 34c9c3ddd..1ba5eb27c 100644 --- a/src/HistoryWindow.cpp +++ b/src/HistoryWindow.cpp @@ -185,7 +185,7 @@ bool HistoryWindow::Show( bool show ) { if ( show && !IsShown()) DoUpdate(); - return wxDialogWrapper::Show(); + return wxDialogWrapper::Show( show ); } void HistoryWindow::DoUpdate()