X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7c349adb6e419aa8007e2c6c323e80ee39bcd4e2..6ed897586a72ef2d7d7c8393bf8f75220d7bc160:/src/generic/progdlgg.cpp diff --git a/src/generic/progdlgg.cpp b/src/generic/progdlgg.cpp index 4b5dcd7e75..8f2fc1e404 100644 --- a/src/generic/progdlgg.cpp +++ b/src/generic/progdlgg.cpp @@ -342,33 +342,40 @@ wxProgressDialog::Update(int value, const wxString& newmsg) SetTimeLabel(remaining, m_remaining); } - if ( (value == m_maximum ) && !(GetWindowStyle() & wxPD_AUTO_HIDE) ) + if ( (value == m_maximum ) ) { - if ( m_btnAbort ) + // so that we return TRUE below and that out [Cancel] handler knew what + // to do + m_state = Finished; + if( !(GetWindowStyle() & wxPD_AUTO_HIDE) ) { - // tell the user what he should do... - m_btnAbort->SetLabel(_("Close")); - } + if ( m_btnAbort ) + { + // tell the user what he should do... + m_btnAbort->SetLabel(_("Close")); + } #if defined(__WXMSW__) && !defined(__WXUNIVERSAL__) - else // enable the close button to give the user a way to close the dlg - { - EnableCloseButton(TRUE); - } + else // enable the close button to give the user a way to close the dlg + { + EnableCloseButton(TRUE); + } #endif // __WXMSW__ - if ( !newmsg ) - { - // also provide the finishing message if the application didn't - m_msg->SetLabel(_("Done.")); - } - - // so that we return TRUE below and that out [Cancel] handler knew what - // to do - m_state = Finished; + if ( !newmsg ) + { + // also provide the finishing message if the application didn't + m_msg->SetLabel(_("Done.")); + } - wxYield(); + wxYield(); - (void)ShowModal(); + (void)ShowModal(); + } + else + { + Hide(); + ReenableOtherWindows(); + } } else {