summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorMichael Natterer <mitch@imendio.com>2008-08-05 14:25:29 +0000
committerMichael Natterer <mitch@src.gnome.org>2008-08-05 14:25:29 +0000
commit0affd82480977288c64ff9571b78cd777dfc4ad3 (patch)
tree6890668134941b4ba8c6da83d8c9d8a7a2ef6284 /ChangeLog
parentd4984773e87d3bbee47951e3fd7dcfdbbab30d5b (diff)
downloadgtk+-0affd82480977288c64ff9571b78cd777dfc4ad3.tar.gz
clamp the value to [lower...upper-page_size] instead of only
2008-08-05 Michael Natterer <mitch@imendio.com> * gtk/gtkadjustment.c (gtk_adjustment_set_value): clamp the value to [lower...upper-page_size] instead of only [lower...upper]. * README: add note about this change. While this fix is correct and should have been there forever, it has the potential to break some corner cases, however these cases would set page_size to a value != 0 which suggests they want it honored. svn path=/trunk/; revision=21012
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog12
1 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ca840dcfae..f342f8303b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,17 @@
2008-08-05 Michael Natterer <mitch@imendio.com>
+ * gtk/gtkadjustment.c (gtk_adjustment_set_value): clamp the value
+ to [lower...upper-page_size] instead of only [lower...upper].
+
+ * README: add note about this change.
+
+ While this fix is correct and should have been there forever, it
+ has the potential to break some corner cases, however these cases
+ would set page_size to a value != 0 which suggests they want it
+ honored.
+
+2008-08-05 Michael Natterer <mitch@imendio.com>
+
* tests/testiconview.c: don't use the deprecated
gtk_box_pack_start_defaults().