]> Pileus Git - ~andy/gtk/commitdiff
GtkProgressbar: respect the range of 'fraction'
authorMatthias Clasen <mclasen@redhat.com>
Fri, 11 Nov 2011 15:26:31 +0000 (10:26 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Fri, 11 Nov 2011 15:36:09 +0000 (10:36 -0500)
The setter should not set the property to values outside the allowed
range.

https://bugzilla.gnome.org/show_bug.cgi?id=663825

gtk/gtkprogressbar.c

index bbf5509c95baaab9c438c844a53a4762a3d9b62f..48ead0489a660e763c7c03a5908d4d46dc13dfd5 100644 (file)
@@ -1060,7 +1060,7 @@ gtk_progress_bar_set_activity_mode (GtkProgressBar *pbar,
  * of the bar. The fraction should be between 0.0 and 1.0,
  * inclusive.
  *
- **/
+ */
 void
 gtk_progress_bar_set_fraction (GtkProgressBar *pbar,
                                gdouble         fraction)
@@ -1071,7 +1071,7 @@ gtk_progress_bar_set_fraction (GtkProgressBar *pbar,
 
   priv = pbar->priv;
 
-  priv->fraction = fraction;
+  priv->fraction = CLAMP(fraction, 0.0, 1.0);
   gtk_progress_bar_set_activity_mode (pbar, FALSE);
   gtk_progress_bar_real_update (pbar);