From 8cdea60388f03e89be49544bf6b1725118a15c4f Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 14 Feb 2006 05:03:41 +0000 Subject: [PATCH] always hide progress when done --- stepmania/src/archutils/Win32/CrashHandlerChild.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stepmania/src/archutils/Win32/CrashHandlerChild.cpp b/stepmania/src/archutils/Win32/CrashHandlerChild.cpp index 40d37e691f..4af2905243 100644 --- a/stepmania/src/archutils/Win32/CrashHandlerChild.cpp +++ b/stepmania/src/archutils/Win32/CrashHandlerChild.cpp @@ -770,16 +770,15 @@ bool CrashDialog::HandleMessage( UINT msg, WPARAM wParam, LPARAM lParam ) SetWindowText( GetDlgItem(hDlg, IDC_MAIN_TEXT), UPDATE_IS_AVAILABLE.GetValue() ); SetWindowText( GetDlgItem(hDlg, IDC_BUTTON_AUTO_REPORT), VIEW_UPDATE.GetValue() ); ShowWindow( GetDlgItem(hDlg, IDC_BUTTON_AUTO_REPORT), true ); - ShowWindow( GetDlgItem(hDlg, IDC_PROGRESS), false ); } else if( xml.GetAttrValue("ReportId", iID) ) { SetWindowText( GetDlgItem(hDlg, IDC_MAIN_TEXT), UPDATE_IS_NOT_AVAILABLE.GetValue() ); SetWindowText( GetDlgItem(hDlg, IDC_RESULT_ID), ssprintf("#%i", iID) ); ShowWindow( GetDlgItem(hDlg, IDC_RESULT_ID), true ); - ShowWindow( GetDlgItem(hDlg, IDC_PROGRESS), false ); } + ShowWindow( GetDlgItem(hDlg, IDC_PROGRESS), false ); SetWindowText( GetDlgItem(hDlg, IDC_BUTTON_CLOSE), CLOSE.GetValue() ); } }