mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Pass the target list to the underlying dnd implementation, otherwise we
2005-04-06 Matthias Clasen <mclasen@redhat.com> * gtk/gtktreeview.c (gtk_tree_view_enable_model_drag_source) (gtk_tree_view_enable_model_drag_dest): Pass the target list to the underlying dnd implementation, otherwise we miss the target info in the drag-data-received signal. (#164085, Jorn Baayen)
This commit is contained in:
parent
d1dd40d9ae
commit
25c468dfbb
@ -2,6 +2,11 @@
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_set_search_column): Document
|
||||
-1 as possible value.
|
||||
(gtk_tree_view_enable_model_drag_source)
|
||||
(gtk_tree_view_enable_model_drag_dest): Pass the target list
|
||||
to the underlying dnd implementation, otherwise we miss the
|
||||
target info in the drag-data-received signal. (#164085, Jorn
|
||||
Baayen)
|
||||
|
||||
2005-04-06 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
|
@ -2,6 +2,11 @@
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_set_search_column): Document
|
||||
-1 as possible value.
|
||||
(gtk_tree_view_enable_model_drag_source)
|
||||
(gtk_tree_view_enable_model_drag_dest): Pass the target list
|
||||
to the underlying dnd implementation, otherwise we miss the
|
||||
target info in the drag-data-received signal. (#164085, Jorn
|
||||
Baayen)
|
||||
|
||||
2005-04-06 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
|
@ -2,6 +2,11 @@
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_set_search_column): Document
|
||||
-1 as possible value.
|
||||
(gtk_tree_view_enable_model_drag_source)
|
||||
(gtk_tree_view_enable_model_drag_dest): Pass the target list
|
||||
to the underlying dnd implementation, otherwise we miss the
|
||||
target info in the drag-data-received signal. (#164085, Jorn
|
||||
Baayen)
|
||||
|
||||
2005-04-06 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
|
@ -11638,8 +11638,8 @@ gtk_tree_view_enable_model_drag_source (GtkTreeView *tree_view,
|
||||
|
||||
gtk_drag_source_set (GTK_WIDGET (tree_view),
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
targets,
|
||||
n_targets,
|
||||
actions);
|
||||
|
||||
di = ensure_info (tree_view);
|
||||
@ -11676,8 +11676,8 @@ gtk_tree_view_enable_model_drag_dest (GtkTreeView *tree_view,
|
||||
|
||||
gtk_drag_dest_set (GTK_WIDGET (tree_view),
|
||||
0,
|
||||
NULL,
|
||||
0,
|
||||
targets,
|
||||
n_targets,
|
||||
actions);
|
||||
|
||||
di = ensure_info (tree_view);
|
||||
|
Loading…
Reference in New Issue
Block a user