diff --git a/ChangeLog b/ChangeLog index 0b93396262..47d98a41bc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Mon Feb 25 18:59:27 2002 Owen Taylor + + * gtk/gtktooltips.c (start_keyboard_mode): Set the keyboard-mode + flag before popping up the tooltip so that pop it up + in the right place. (#71917, Narayani Pattipati) + Mon Feb 25 22:11:34 2002 Kristian Rietveld * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_visible): call diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 0b93396262..47d98a41bc 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,9 @@ +Mon Feb 25 18:59:27 2002 Owen Taylor + + * gtk/gtktooltips.c (start_keyboard_mode): Set the keyboard-mode + flag before popping up the tooltip so that pop it up + in the right place. (#71917, Narayani Pattipati) + Mon Feb 25 22:11:34 2002 Kristian Rietveld * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_visible): call diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 0b93396262..47d98a41bc 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +Mon Feb 25 18:59:27 2002 Owen Taylor + + * gtk/gtktooltips.c (start_keyboard_mode): Set the keyboard-mode + flag before popping up the tooltip so that pop it up + in the right place. (#71917, Narayani Pattipati) + Mon Feb 25 22:11:34 2002 Kristian Rietveld * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_visible): call diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 0b93396262..47d98a41bc 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,9 @@ +Mon Feb 25 18:59:27 2002 Owen Taylor + + * gtk/gtktooltips.c (start_keyboard_mode): Set the keyboard-mode + flag before popping up the tooltip so that pop it up + in the right place. (#71917, Narayani Pattipati) + Mon Feb 25 22:11:34 2002 Kristian Rietveld * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_visible): call diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 0b93396262..47d98a41bc 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +Mon Feb 25 18:59:27 2002 Owen Taylor + + * gtk/gtktooltips.c (start_keyboard_mode): Set the keyboard-mode + flag before popping up the tooltip so that pop it up + in the right place. (#71917, Narayani Pattipati) + Mon Feb 25 22:11:34 2002 Kristian Rietveld * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_visible): call diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 0b93396262..47d98a41bc 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +Mon Feb 25 18:59:27 2002 Owen Taylor + + * gtk/gtktooltips.c (start_keyboard_mode): Set the keyboard-mode + flag before popping up the tooltip so that pop it up + in the right place. (#71917, Narayani Pattipati) + Mon Feb 25 22:11:34 2002 Kristian Rietveld * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_visible): call diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 0b93396262..47d98a41bc 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +Mon Feb 25 18:59:27 2002 Owen Taylor + + * gtk/gtktooltips.c (start_keyboard_mode): Set the keyboard-mode + flag before popping up the tooltip so that pop it up + in the right place. (#71917, Narayani Pattipati) + Mon Feb 25 22:11:34 2002 Kristian Rietveld * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_visible): call diff --git a/gtk/gtktooltips.c b/gtk/gtktooltips.c index 359aae9df8..3ed3d27875 100644 --- a/gtk/gtktooltips.c +++ b/gtk/gtktooltips.c @@ -491,10 +491,11 @@ start_keyboard_mode (GtkWidget *widget) if (GTK_IS_WINDOW (toplevel)) { GtkWidget *focus = GTK_WINDOW (toplevel)->focus_widget; + + g_object_set_data (G_OBJECT (toplevel), "gtk-tooltips-keyboard-mode", GUINT_TO_POINTER (TRUE)); + if (focus) gtk_tooltips_show_tip (focus); - - g_object_set_data (G_OBJECT (toplevel), "gtk-tooltips-keyboard-mode", GUINT_TO_POINTER (TRUE)); } }