actually directly return after handling column button focus; we disable

2006-09-15  Kristian Rietveld  <kris@imendio.com>

	* gtk/gtktreeview.c (gtk_tree_view_key_press): actually directly
	return after handling column button focus; we disable wrap around
	with this (which actually happened via a really weird code path).
	(Michael Natterer)
This commit is contained in:
Kristian Rietveld 2006-09-15 11:22:03 +00:00 committed by Kristian Rietveld
parent 2dddfb8c22
commit 9255c2d110
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2006-09-15 Kristian Rietveld <kris@imendio.com>
* gtk/gtktreeview.c (gtk_tree_view_key_press): actually directly
return after handling column button focus; we disable wrap around
with this (which actually happened via a really weird code path).
(Michael Natterer)
2006-09-15 Kristian Rietveld <kris@imendio.com>
* gtk/gtktreeview.c (gtk_tree_view_key_press): make column resizing

View File

@ -5252,7 +5252,7 @@ gtk_tree_view_key_press (GtkWidget *widget,
return TRUE;
}
break;
return TRUE;
}
width += GTK_TREE_VIEW_COLUMN (list->data)->width;
list = list->next;