forked from AuroraMiddleware/gtk
Merge from stable.
Tue Sep 2 21:01:19 2003 Kristian Rietveld <kris@gtk.org> Merge from stable. * gtk/gtktreeview.c (gtk_tree_view_button_press): revert the change to only select when button 1 is pressed introduced in the fix of bug #120187.
This commit is contained in:
parent
2ece92c8f3
commit
e5efd71486
@ -1,3 +1,11 @@
|
||||
Tue Sep 2 21:01:19 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
Merge from stable.
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_button_press): revert the change
|
||||
to only select when button 1 is pressed introduced in the fix of
|
||||
bug #120187.
|
||||
|
||||
2003-09-02 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkactiongroup.c (gtk_action_group_new): Doc addition.
|
||||
|
@ -1,3 +1,11 @@
|
||||
Tue Sep 2 21:01:19 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
Merge from stable.
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_button_press): revert the change
|
||||
to only select when button 1 is pressed introduced in the fix of
|
||||
bug #120187.
|
||||
|
||||
2003-09-02 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkactiongroup.c (gtk_action_group_new): Doc addition.
|
||||
|
@ -1,3 +1,11 @@
|
||||
Tue Sep 2 21:01:19 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
Merge from stable.
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_button_press): revert the change
|
||||
to only select when button 1 is pressed introduced in the fix of
|
||||
bug #120187.
|
||||
|
||||
2003-09-02 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkactiongroup.c (gtk_action_group_new): Doc addition.
|
||||
|
@ -1,3 +1,11 @@
|
||||
Tue Sep 2 21:01:19 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
Merge from stable.
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_button_press): revert the change
|
||||
to only select when button 1 is pressed introduced in the fix of
|
||||
bug #120187.
|
||||
|
||||
2003-09-02 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkactiongroup.c (gtk_action_group_new): Doc addition.
|
||||
|
@ -1,3 +1,11 @@
|
||||
Tue Sep 2 21:01:19 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
Merge from stable.
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_button_press): revert the change
|
||||
to only select when button 1 is pressed introduced in the fix of
|
||||
bug #120187.
|
||||
|
||||
2003-09-02 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkactiongroup.c (gtk_action_group_new): Doc addition.
|
||||
|
@ -2141,10 +2141,9 @@ gtk_tree_view_button_press (GtkWidget *widget,
|
||||
/* select */
|
||||
pre_val = tree_view->priv->vadjustment->value;
|
||||
|
||||
/* we only handle selection modifications from the first button on
|
||||
* the first button press
|
||||
/* we only handle selection modifications on the first button press
|
||||
*/
|
||||
if (event->type == GDK_BUTTON_PRESS && event->button == 1)
|
||||
if (event->type == GDK_BUTTON_PRESS)
|
||||
{
|
||||
if ((event->state & GDK_CONTROL_MASK) == GDK_CONTROL_MASK)
|
||||
tree_view->priv->ctrl_pressed = TRUE;
|
||||
|
Loading…
Reference in New Issue
Block a user