mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-12 05:20:17 +00:00
check for 0 value on the denominator in the horizontal case just like we
Sun Dec 09 15:06:51 2001 George Lebl <jirka@5z.com> * gtk/gtkrange.c (gtk_range_calc_layout): check for 0 value on the denominator in the horizontal case just like we do in the vertical case (why I didn't notice that there were two cases the first time around is beyond me:). Also fix indentation in the vertical case.
This commit is contained in:
parent
17f81739f7
commit
c66ca2dfb3
@ -1,3 +1,10 @@
|
||||
Sun Dec 09 15:06:51 2001 George Lebl <jirka@5z.com>
|
||||
|
||||
* gtk/gtkrange.c (gtk_range_calc_layout): check for 0 value on the
|
||||
denominator in the horizontal case just like we do in the vertical
|
||||
case (why I didn't notice that there were two cases the first time
|
||||
around is beyond me:). Also fix indentation in the vertical case.
|
||||
|
||||
2001-12-09 Anders Carlsson <andersca@gnu.org>
|
||||
|
||||
* gdk/x11/gdkevents-x11.c: Update xsettings name.
|
||||
|
@ -1,3 +1,10 @@
|
||||
Sun Dec 09 15:06:51 2001 George Lebl <jirka@5z.com>
|
||||
|
||||
* gtk/gtkrange.c (gtk_range_calc_layout): check for 0 value on the
|
||||
denominator in the horizontal case just like we do in the vertical
|
||||
case (why I didn't notice that there were two cases the first time
|
||||
around is beyond me:). Also fix indentation in the vertical case.
|
||||
|
||||
2001-12-09 Anders Carlsson <andersca@gnu.org>
|
||||
|
||||
* gdk/x11/gdkevents-x11.c: Update xsettings name.
|
||||
|
@ -1,3 +1,10 @@
|
||||
Sun Dec 09 15:06:51 2001 George Lebl <jirka@5z.com>
|
||||
|
||||
* gtk/gtkrange.c (gtk_range_calc_layout): check for 0 value on the
|
||||
denominator in the horizontal case just like we do in the vertical
|
||||
case (why I didn't notice that there were two cases the first time
|
||||
around is beyond me:). Also fix indentation in the vertical case.
|
||||
|
||||
2001-12-09 Anders Carlsson <andersca@gnu.org>
|
||||
|
||||
* gdk/x11/gdkevents-x11.c: Update xsettings name.
|
||||
|
@ -1,3 +1,10 @@
|
||||
Sun Dec 09 15:06:51 2001 George Lebl <jirka@5z.com>
|
||||
|
||||
* gtk/gtkrange.c (gtk_range_calc_layout): check for 0 value on the
|
||||
denominator in the horizontal case just like we do in the vertical
|
||||
case (why I didn't notice that there were two cases the first time
|
||||
around is beyond me:). Also fix indentation in the vertical case.
|
||||
|
||||
2001-12-09 Anders Carlsson <andersca@gnu.org>
|
||||
|
||||
* gdk/x11/gdkevents-x11.c: Update xsettings name.
|
||||
|
@ -1,3 +1,10 @@
|
||||
Sun Dec 09 15:06:51 2001 George Lebl <jirka@5z.com>
|
||||
|
||||
* gtk/gtkrange.c (gtk_range_calc_layout): check for 0 value on the
|
||||
denominator in the horizontal case just like we do in the vertical
|
||||
case (why I didn't notice that there were two cases the first time
|
||||
around is beyond me:). Also fix indentation in the vertical case.
|
||||
|
||||
2001-12-09 Anders Carlsson <andersca@gnu.org>
|
||||
|
||||
* gdk/x11/gdkevents-x11.c: Update xsettings name.
|
||||
|
@ -1,3 +1,10 @@
|
||||
Sun Dec 09 15:06:51 2001 George Lebl <jirka@5z.com>
|
||||
|
||||
* gtk/gtkrange.c (gtk_range_calc_layout): check for 0 value on the
|
||||
denominator in the horizontal case just like we do in the vertical
|
||||
case (why I didn't notice that there were two cases the first time
|
||||
around is beyond me:). Also fix indentation in the vertical case.
|
||||
|
||||
2001-12-09 Anders Carlsson <andersca@gnu.org>
|
||||
|
||||
* gdk/x11/gdkevents-x11.c: Update xsettings name.
|
||||
|
@ -1,3 +1,10 @@
|
||||
Sun Dec 09 15:06:51 2001 George Lebl <jirka@5z.com>
|
||||
|
||||
* gtk/gtkrange.c (gtk_range_calc_layout): check for 0 value on the
|
||||
denominator in the horizontal case just like we do in the vertical
|
||||
case (why I didn't notice that there were two cases the first time
|
||||
around is beyond me:). Also fix indentation in the vertical case.
|
||||
|
||||
2001-12-09 Anders Carlsson <andersca@gnu.org>
|
||||
|
||||
* gdk/x11/gdkevents-x11.c: Update xsettings name.
|
||||
|
@ -2019,8 +2019,8 @@ gtk_range_calc_layout (GtkRange *range,
|
||||
y = top;
|
||||
|
||||
if (range->adjustment->upper - range->adjustment->lower - range->adjustment->page_size != 0)
|
||||
y += (bottom - top - height) * ((adjustment_value - range->adjustment->lower) /
|
||||
(range->adjustment->upper - range->adjustment->lower - range->adjustment->page_size));
|
||||
y += (bottom - top - height) * ((adjustment_value - range->adjustment->lower) /
|
||||
(range->adjustment->upper - range->adjustment->lower - range->adjustment->page_size));
|
||||
|
||||
y = CLAMP (y, top, bottom);
|
||||
|
||||
@ -2154,8 +2154,9 @@ gtk_range_calc_layout (GtkRange *range,
|
||||
|
||||
x = left;
|
||||
|
||||
x += (right - left - width) * ((adjustment_value - range->adjustment->lower) /
|
||||
(range->adjustment->upper - range->adjustment->lower - range->adjustment->page_size));
|
||||
if (range->adjustment->upper - range->adjustment->lower - range->adjustment->page_size != 0)
|
||||
x += (right - left - width) * ((adjustment_value - range->adjustment->lower) /
|
||||
(range->adjustment->upper - range->adjustment->lower - range->adjustment->page_size));
|
||||
|
||||
x = CLAMP (x, left, right);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user