aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2001-05-11 03:21:09 +0800
committerIain Holmes <iain@src.gnome.org>2001-05-11 03:21:09 +0800
commitaafa7e89665dca63dda4a68cc64730b33b6ce5a3 (patch)
treefa7b381f9ea83edf18f2571a30c05c39aa7be858
parentd16acb954a6919ce909c105c52e205159bf1af08 (diff)
downloadgsoc2013-evolution-aafa7e89665dca63dda4a68cc64730b33b6ce5a3.tar
gsoc2013-evolution-aafa7e89665dca63dda4a68cc64730b33b6ce5a3.tar.gz
gsoc2013-evolution-aafa7e89665dca63dda4a68cc64730b33b6ce5a3.tar.bz2
gsoc2013-evolution-aafa7e89665dca63dda4a68cc64730b33b6ce5a3.tar.lz
gsoc2013-evolution-aafa7e89665dca63dda4a68cc64730b33b6ce5a3.tar.xz
gsoc2013-evolution-aafa7e89665dca63dda4a68cc64730b33b6ce5a3.tar.zst
gsoc2013-evolution-aafa7e89665dca63dda4a68cc64730b33b6ce5a3.zip
Don't let the spinner be set to 0
svn path=/trunk/; revision=9746
-rw-r--r--executive-summary/ChangeLog5
-rw-r--r--executive-summary/test-service/rdf-summary.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/executive-summary/ChangeLog b/executive-summary/ChangeLog
index c3f306300b..118409dbdc 100644
--- a/executive-summary/ChangeLog
+++ b/executive-summary/ChangeLog
@@ -1,5 +1,10 @@
2001-05-10 Iain Holmes <iain@ximian.com>
+ * test-service/rdf-summary.c (property_control): Don't let the spinner
+ be set to 0
+
+2001-05-10 Iain Holmes <iain@ximian.com>
+
* test-service/rdf-summary.c (download_cb): Proxy clicked events to
download.
(property_control): Connect the Update Now button to the download_cb
diff --git a/executive-summary/test-service/rdf-summary.c b/executive-summary/test-service/rdf-summary.c
index 6c513280c0..10715cb799 100644
--- a/executive-summary/test-service/rdf-summary.c
+++ b/executive-summary/test-service/rdf-summary.c
@@ -796,7 +796,7 @@ property_control (BonoboPropertyControl *property_control,
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
summary->adjustment = GTK_ADJUSTMENT(gtk_adjustment_new (summary->time / 1000 / 60,
- 0.0, 1000.0, 1.0, 10.0, 1.0));
+ 1.0, 1000.0, 1.0, 10.0, 1.0));
spinner = gtk_spin_button_new (summary->adjustment, 1.0, 0);
gtk_box_pack_start (GTK_BOX (hbox), spinner, FALSE, FALSE, 0);