]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/progdlgg.cpp
refresh the tree ctrl when its back/foreground colour changes
[wxWidgets.git] / src / generic / progdlgg.cpp
index 2153f420dd5084720f2eaba92c35d231edca6a6b..4fc3c975424a95d8fc7644fd4327fd23f45656d0 100644 (file)
@@ -240,6 +240,14 @@ wxProgressDialog::wxProgressDialog(wxString const &title,
     Show(TRUE);
     Enable(TRUE); // enable this window
 
+    // this one can be initialized even if the others are unknown for now
+    //
+    // NB: do it after calling Layout() to keep the labels correctly aligned
+    if ( m_elapsed )
+    {
+        SetTimeLabel(0, m_elapsed);
+    }
+
     // Update the display (especially on X, GTK)
     wxYield();