File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -1800,7 +1800,8 @@ eom_scroll_view_init (EomScrollView *view)
18001800
18011801 gtk_drag_source_set (priv -> display , GDK_BUTTON1_MASK ,
18021802 target_table , G_N_ELEMENTS (target_table ),
1803- GDK_ACTION_COPY );
1803+ GDK_ACTION_COPY | GDK_ACTION_MOVE |
1804+ GDK_ACTION_LINK | GDK_ACTION_ASK );
18041805 g_signal_connect (G_OBJECT (priv -> display ), "drag-data-get" ,
18051806 G_CALLBACK (view_on_drag_data_get_cb ), view );
18061807 g_signal_connect (G_OBJECT (priv -> display ), "drag-begin" ,
Original file line number Diff line number Diff line change @@ -149,7 +149,10 @@ eom_thumb_view_constructed (GObject *object)
149149
150150 gtk_icon_view_enable_model_drag_source (GTK_ICON_VIEW (thumbview ), 0 ,
151151 NULL , 0 ,
152- GDK_ACTION_COPY );
152+ GDK_ACTION_COPY |
153+ GDK_ACTION_MOVE |
154+ GDK_ACTION_LINK |
155+ GDK_ACTION_ASK );
153156 gtk_drag_source_add_uri_targets (GTK_WIDGET (thumbview ));
154157
155158 g_signal_connect (G_OBJECT (thumbview ), "drag-data-get" ,
You can’t perform that action at this time.
0 commit comments