2005-07-12 [colin] 1.9.12cvs38
authorColin Leroy <colin@colino.net>
Tue, 12 Jul 2005 06:55:52 +0000 (06:55 +0000)
committerColin Leroy <colin@colino.net>
Tue, 12 Jul 2005 06:55:52 +0000 (06:55 +0000)
* src/statusbar.c
Fix progress bar showing stuff at startup.

ChangeLog-gtk2.claws
PATCHSETS
configure.ac
src/statusbar.c

index 704f9a6ceb7b7fdf97dd0fe507e5c19cd88cbdd8..b60acdf838a2478fdf779cd42c7cd4252e1c51c7 100644 (file)
@@ -1,3 +1,8 @@
+2005-07-12 [colin]     1.9.12cvs38
+
+       * src/statusbar.c
+               Fix progress bar showing stuff at startup.
+
 2005-07-12 [paul]      1.9.12cvs37
 
        * src/editjpilot.c
index 14b6ba5e7c1d5b858c28392f53944a112f90483f..99aba9e10144b5d39302392a74e36119be33ae4f 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.9.2.6 -r 1.9.2.7 src/plugins/clamav/clamav_plugin_gtk.c;  cvs diff -u -r 1.5.2.5 -r 1.5.2.6 src/plugins/dillo_viewer/dillo_prefs.c;  cvs diff -u -r 1.1.2.9 -r 1.1.2.10 src/plugins/pgpmime/prefs_gpg.c;  cvs diff -u -r 1.23.2.9 -r 1.23.2.10 src/plugins/spamassassin/spamassassin_gtk.c;  ) > 1.9.12cvs35.patchset
 ( cvs diff -u -r 1.149.2.28 -r 1.149.2.29 src/inc.c;  cvs diff -u -r 1.96.2.61 -r 1.96.2.62 src/textview.c;  cvs diff -u -r 1.395.2.91 -r 1.395.2.92 src/summaryview.c;  ) > 1.9.12cvs36.patchset
 ( cvs diff -u -r 1.5.12.4 -r 1.5.12.5 src/editjpilot.c;  ) > 1.9.12cvs37.patchset
+( cvs diff -u -r 1.5.2.5 -r 1.5.2.6 src/statusbar.c;  ) > 1.9.12cvs38.patchset
index 13991c195bb89c3606f680b1ad17a646dd6b30c8..9e4675be42a857cacaea4df19a453cc5508747db 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=9
 MICRO_VERSION=12
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=37
+EXTRA_VERSION=38
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index 4ffb5baccd07d6a50ab278257e94aeae44eca88d..1033af14dfa2943554ba5a860496a7741ccf8bb5 100644 (file)
@@ -157,10 +157,10 @@ void statusbar_progress_all (gint done, gint total, gint step)
                        (GTK_PROGRESS_BAR(mainwindow_get_mainwindow()->progressbar),
                         (gfloat)done / (gfloat)total);
        } else if (total == 0) {
-               gtk_progress_bar_set_fraction
-                       (GTK_PROGRESS_BAR(mainwindow_get_mainwindow()->progressbar), 0);
                gtk_progress_bar_set_text
                        (GTK_PROGRESS_BAR(mainwindow_get_mainwindow()->progressbar), "");
+               gtk_progress_bar_set_fraction
+                       (GTK_PROGRESS_BAR(mainwindow_get_mainwindow()->progressbar), 0.0);
        }
        
 }