mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Don't start a drag if the treeview is only a drag destination. (#149836,
Wed Aug 11 19:20:34 2004 Matthias Clasen <maclas@gmx.de> * gtk/gtktreeview.c (gtk_tree_view_maybe_begin_dragging_row): Don't start a drag if the treeview is only a drag destination. (#149836, Pawel Salek)
This commit is contained in:
parent
e9c126dbfd
commit
0151fe7ced
@ -1,3 +1,9 @@
|
||||
Wed Aug 11 19:20:34 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_maybe_begin_dragging_row):
|
||||
Don't start a drag if the treeview is only a
|
||||
drag destination. (#149836, Pawel Salek)
|
||||
|
||||
2004-08-11 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtktreedatalist.[hc]:
|
||||
|
@ -1,3 +1,9 @@
|
||||
Wed Aug 11 19:20:34 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_maybe_begin_dragging_row):
|
||||
Don't start a drag if the treeview is only a
|
||||
drag destination. (#149836, Pawel Salek)
|
||||
|
||||
2004-08-11 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtktreedatalist.[hc]:
|
||||
|
@ -1,3 +1,9 @@
|
||||
Wed Aug 11 19:20:34 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_maybe_begin_dragging_row):
|
||||
Don't start a drag if the treeview is only a
|
||||
drag destination. (#149836, Pawel Salek)
|
||||
|
||||
2004-08-11 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtktreedatalist.[hc]:
|
||||
|
@ -1,3 +1,9 @@
|
||||
Wed Aug 11 19:20:34 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_maybe_begin_dragging_row):
|
||||
Don't start a drag if the treeview is only a
|
||||
drag destination. (#149836, Pawel Salek)
|
||||
|
||||
2004-08-11 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtktreedatalist.[hc]:
|
||||
|
@ -5844,7 +5844,7 @@ gtk_tree_view_maybe_begin_dragging_row (GtkTreeView *tree_view,
|
||||
|
||||
di = get_info (tree_view);
|
||||
|
||||
if (di == NULL)
|
||||
if (di == NULL || !di->source_set)
|
||||
goto out;
|
||||
|
||||
if (tree_view->priv->pressed_button < 0)
|
||||
|
Loading…
Reference in New Issue
Block a user