Bug 546754 – 2.13.6 update create rendering issue in the evolution

2008-08-11  Michael Natterer  <mitch@imendio.com>

	Bug 546754 – 2.13.6 update create rendering issue in the evolution
	composer

	* gtk/gtkadjustment.c: instead of CLAMP(), use

	value = MIN (value, upper - page_size);
	value = MAX (value, lower);

	so we don't end up below lower if upper - page_size is smaller
	than lower.


svn path=/trunk/; revision=21080
This commit is contained in:
Michael Natterer
2008-08-11 21:07:36 +00:00
committed by Michael Natterer
parent 6f789132c5
commit 74bc87842f
2 changed files with 23 additions and 2 deletions

View File

@ -1,3 +1,16 @@
2008-08-11 Michael Natterer <mitch@imendio.com>
Bug 546754 2.13.6 update create rendering issue in the evolution
composer
* gtk/gtkadjustment.c: instead of CLAMP(), use
value = MIN (value, upper - page_size);
value = MAX (value, lower);
so we don't end up below lower if upper - page_size is smaller
than lower.
2008-08-11 Matthias Clasen <mclasen@redhat.com>
Bug 546616 CUPS print backend uses 1.2 API without guards