Make tab key move in reading order (left-to-right top to bottom) - which
Mon Apr 6 00:28:28 1998 Owen Taylor <owt1@cornell.edu> * gtk/gtkcontainer.c (gtk_container_focus_tab): Make tab key move in reading order (left-to-right top to bottom) - which might have been the original intended behavior modulo sorting bugs. * gtk-config.in: Never output -I/usr/include from --cflags
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
Mon Apr 6 00:28:28 1998 Owen Taylor <owt1@cornell.edu>
|
||||
|
||||
* gtk/gtkcontainer.c (gtk_container_focus_tab): Make
|
||||
tab key move in reading order (left-to-right top
|
||||
to bottom) - which might have been the original intended
|
||||
behavior modulo sorting bugs.
|
||||
|
||||
* gtk-config.in: Never output -I/usr/include from --cflags
|
||||
|
||||
Sun Apr 5 21:47:12 1998 Owen Taylor <owt1@cornell.edu>
|
||||
|
||||
* gtk/gtkmenubar.c: Fixed bug where right justified
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
Mon Apr 6 00:28:28 1998 Owen Taylor <owt1@cornell.edu>
|
||||
|
||||
* gtk/gtkcontainer.c (gtk_container_focus_tab): Make
|
||||
tab key move in reading order (left-to-right top
|
||||
to bottom) - which might have been the original intended
|
||||
behavior modulo sorting bugs.
|
||||
|
||||
* gtk-config.in: Never output -I/usr/include from --cflags
|
||||
|
||||
Sun Apr 5 21:47:12 1998 Owen Taylor <owt1@cornell.edu>
|
||||
|
||||
* gtk/gtkmenubar.c: Fixed bug where right justified
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
Mon Apr 6 00:28:28 1998 Owen Taylor <owt1@cornell.edu>
|
||||
|
||||
* gtk/gtkcontainer.c (gtk_container_focus_tab): Make
|
||||
tab key move in reading order (left-to-right top
|
||||
to bottom) - which might have been the original intended
|
||||
behavior modulo sorting bugs.
|
||||
|
||||
* gtk-config.in: Never output -I/usr/include from --cflags
|
||||
|
||||
Sun Apr 5 21:47:12 1998 Owen Taylor <owt1@cornell.edu>
|
||||
|
||||
* gtk/gtkmenubar.c: Fixed bug where right justified
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
Mon Apr 6 00:28:28 1998 Owen Taylor <owt1@cornell.edu>
|
||||
|
||||
* gtk/gtkcontainer.c (gtk_container_focus_tab): Make
|
||||
tab key move in reading order (left-to-right top
|
||||
to bottom) - which might have been the original intended
|
||||
behavior modulo sorting bugs.
|
||||
|
||||
* gtk-config.in: Never output -I/usr/include from --cflags
|
||||
|
||||
Sun Apr 5 21:47:12 1998 Owen Taylor <owt1@cornell.edu>
|
||||
|
||||
* gtk/gtkmenubar.c: Fixed bug where right justified
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
Mon Apr 6 00:28:28 1998 Owen Taylor <owt1@cornell.edu>
|
||||
|
||||
* gtk/gtkcontainer.c (gtk_container_focus_tab): Make
|
||||
tab key move in reading order (left-to-right top
|
||||
to bottom) - which might have been the original intended
|
||||
behavior modulo sorting bugs.
|
||||
|
||||
* gtk-config.in: Never output -I/usr/include from --cflags
|
||||
|
||||
Sun Apr 5 21:47:12 1998 Owen Taylor <owt1@cornell.edu>
|
||||
|
||||
* gtk/gtkmenubar.c: Fixed bug where right justified
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
Mon Apr 6 00:28:28 1998 Owen Taylor <owt1@cornell.edu>
|
||||
|
||||
* gtk/gtkcontainer.c (gtk_container_focus_tab): Make
|
||||
tab key move in reading order (left-to-right top
|
||||
to bottom) - which might have been the original intended
|
||||
behavior modulo sorting bugs.
|
||||
|
||||
* gtk-config.in: Never output -I/usr/include from --cflags
|
||||
|
||||
Sun Apr 5 21:47:12 1998 Owen Taylor <owt1@cornell.edu>
|
||||
|
||||
* gtk/gtkmenubar.c: Fixed bug where right justified
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
Mon Apr 6 00:28:28 1998 Owen Taylor <owt1@cornell.edu>
|
||||
|
||||
* gtk/gtkcontainer.c (gtk_container_focus_tab): Make
|
||||
tab key move in reading order (left-to-right top
|
||||
to bottom) - which might have been the original intended
|
||||
behavior modulo sorting bugs.
|
||||
|
||||
* gtk-config.in: Never output -I/usr/include from --cflags
|
||||
|
||||
Sun Apr 5 21:47:12 1998 Owen Taylor <owt1@cornell.edu>
|
||||
|
||||
* gtk/gtkmenubar.c: Fixed bug where right justified
|
||||
|
||||
@@ -39,11 +39,12 @@ while test $# -gt 0; do
|
||||
echo @GTK_VERSION@
|
||||
;;
|
||||
--cflags)
|
||||
libdir=@libdir@
|
||||
echo -I$libdir/glib/include -I@includedir@ @x_cflags@
|
||||
if test @includedir@ != /usr/include ; then
|
||||
includes=-I@includedir@
|
||||
fi
|
||||
echo -I@libdir@/glib/include $includes @x_cflags@
|
||||
;;
|
||||
--libs)
|
||||
libdir=@libdir@
|
||||
echo -L@libdir@ @x_ldflags@ -lgtk -lgdk -lglib @x_libs@ -lm
|
||||
;;
|
||||
*)
|
||||
|
||||
@@ -720,7 +720,7 @@ gtk_container_focus_tab (GtkContainer *container,
|
||||
{
|
||||
child2 = tmp_list->prev->data;
|
||||
if ((child->allocation.x < child2->allocation.x) &&
|
||||
(child->allocation.y >= child2->allocation.y))
|
||||
(child->allocation.y == child2->allocation.y))
|
||||
{
|
||||
tmp_list->data = tmp_list->prev->data;
|
||||
tmp_list = tmp_list->prev;
|
||||
|
||||
Reference in New Issue
Block a user