Allow GDK_ACTION_COPY also, since the composer for example does not accept
2002-04-22 Jeffrey Stedfast <fejj@ximian.com> * gui/widgets/e-minicard-view.c (e_minicard_view_drag_begin): Allow GDK_ACTION_COPY also, since the composer for example does not accept MOVE's. Completes bug #8448. svn path=/trunk/; revision=16558
This commit is contained in:
committed by
Jeffrey Stedfast
parent
4c15e61e95
commit
fe26a0fee3
@ -1,3 +1,9 @@
|
||||
2002-04-22 Jeffrey Stedfast <fejj@ximian.com>
|
||||
|
||||
* gui/widgets/e-minicard-view.c (e_minicard_view_drag_begin):
|
||||
Allow GDK_ACTION_COPY also, since the composer for example does
|
||||
not accept MOVE's. Completes bug #8448.
|
||||
|
||||
2002-04-18 Chris Toshok <toshok@ximian.com>
|
||||
|
||||
* gui/component/ldap-config.glade: change order of scope option
|
||||
|
||||
@ -120,8 +120,8 @@ e_minicard_view_drag_begin (EAddressbookReflowAdapter *adapter, GdkEvent *event,
|
||||
{
|
||||
GdkDragContext *context;
|
||||
GtkTargetList *target_list;
|
||||
GdkDragAction actions = GDK_ACTION_MOVE;
|
||||
|
||||
GdkDragAction actions = GDK_ACTION_MOVE | GDK_ACTION_COPY;
|
||||
|
||||
view->drag_list = get_card_list (adapter, E_REFLOW (view)->selection);
|
||||
|
||||
g_print ("dragging %d card(s)\n", g_list_length (view->drag_list));
|
||||
|
||||
Reference in New Issue
Block a user