]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/progdlgg.cpp
Smartphone specific resource files.
[wxWidgets.git] / src / generic / progdlgg.cpp
index 7b96482cd229c25e27232b373cbacbd08a17a8f7..e6cfc0231c7204e21d2a2283c27867d8de238ab7 100644 (file)
@@ -313,9 +313,11 @@ wxProgressDialog::Update(int value, const wxString& newmsg)
 
     wxASSERT_MSG( value <= m_maximum, wxT("invalid progress value") );
 
-    if ( m_gauge && value < m_maximum )
+    // fill up the gauge if value == maximum because this means that the dialog
+    // is going to close and the gauge shouldn't be partly empty in this case
+    if ( m_gauge && value <= m_maximum )
     {
-        m_gauge->SetValue(value + 1);
+        m_gauge->SetValue(value == m_maximum ? value : value + 1);
     }
 
     if ( !newmsg.IsEmpty() )