mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-23 20:30:15 +00:00
the total number of actions is "matches + actions - 1". (Fixes #126572).
Tue Nov 18 22:26:30 2003 Kristian Rietveld <kris@gtk.org> * gtk/gtkentry.c (gtk_entry_completion_key_press): the total number of actions is "matches + actions - 1". (Fixes #126572).
This commit is contained in:
parent
7cda670d12
commit
97dbeec935
@ -1,3 +1,8 @@
|
||||
Tue Nov 18 22:26:30 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtkentry.c (gtk_entry_completion_key_press): the total
|
||||
number of actions is "matches + actions - 1". (Fixes #126572).
|
||||
|
||||
Tue Nov 18 21:05:05 2003 Christian Persch <chp@cvs.gnome.org>
|
||||
|
||||
* gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_inserted): fix
|
||||
|
@ -1,3 +1,8 @@
|
||||
Tue Nov 18 22:26:30 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtkentry.c (gtk_entry_completion_key_press): the total
|
||||
number of actions is "matches + actions - 1". (Fixes #126572).
|
||||
|
||||
Tue Nov 18 21:05:05 2003 Christian Persch <chp@cvs.gnome.org>
|
||||
|
||||
* gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_inserted): fix
|
||||
|
@ -1,3 +1,8 @@
|
||||
Tue Nov 18 22:26:30 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtkentry.c (gtk_entry_completion_key_press): the total
|
||||
number of actions is "matches + actions - 1". (Fixes #126572).
|
||||
|
||||
Tue Nov 18 21:05:05 2003 Christian Persch <chp@cvs.gnome.org>
|
||||
|
||||
* gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_inserted): fix
|
||||
|
@ -1,3 +1,8 @@
|
||||
Tue Nov 18 22:26:30 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtkentry.c (gtk_entry_completion_key_press): the total
|
||||
number of actions is "matches + actions - 1". (Fixes #126572).
|
||||
|
||||
Tue Nov 18 21:05:05 2003 Christian Persch <chp@cvs.gnome.org>
|
||||
|
||||
* gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_inserted): fix
|
||||
|
@ -1,3 +1,8 @@
|
||||
Tue Nov 18 22:26:30 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtkentry.c (gtk_entry_completion_key_press): the total
|
||||
number of actions is "matches + actions - 1". (Fixes #126572).
|
||||
|
||||
Tue Nov 18 21:05:05 2003 Christian Persch <chp@cvs.gnome.org>
|
||||
|
||||
* gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_inserted): fix
|
||||
|
@ -4575,8 +4575,8 @@ gtk_entry_completion_key_press (GtkWidget *widget,
|
||||
else if (event->keyval == GDK_Down || event->keyval == GDK_KP_Down)
|
||||
{
|
||||
completion->priv->current_selected++;
|
||||
if (completion->priv->current_selected >= matches + actions)
|
||||
completion->priv->current_selected = matches + actions;
|
||||
if (completion->priv->current_selected > matches + actions - 1)
|
||||
completion->priv->current_selected = matches + actions - 1;
|
||||
}
|
||||
else if (event->keyval == GDK_Home || event->keyval == GDK_KP_Home)
|
||||
completion->priv->current_selected = -1;
|
||||
|
Loading…
Reference in New Issue
Block a user