From: Alfons Hoogervorst Date: Thu, 10 Oct 2002 20:03:04 +0000 (+0000) Subject: * src/compose.c X-Git-Tag: w0-1~160 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=64d1c12142e7a14519389ed82f47ae39b411247f * src/compose.c allow dropping files by "moving" files from a file manager, not only by the more cumbersome "copying". the latter mostly implies holding down the Control button --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 5819a589a..801f4f5cf 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,10 @@ +2002-10-10 [alfons] 0.8.5claws10 + + * src/compose.c + allow dropping files by "moving" files from a file manager, + not only by the more cumbersome "copying". the latter + mostly implies holding down the Control button + 2002-10-10 [christoph] 0.8.5claws9 * src/summaryview.c diff --git a/configure.in b/configure.in index f4d078693..3f7444111 100644 --- a/configure.in +++ b/configure.in @@ -11,7 +11,7 @@ MINOR_VERSION=8 MICRO_VERSION=5 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws9 +EXTRA_VERSION=claws10 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/compose.c b/src/compose.c index b26078f2c..beb99970f 100644 --- a/src/compose.c +++ b/src/compose.c @@ -4493,7 +4493,7 @@ GtkWidget *compose_create_attach(Compose *compose) /* drag and drop */ gtk_drag_dest_set(attach_clist, GTK_DEST_DEFAULT_ALL, compose_mime_types, 1, - GDK_ACTION_COPY); + GDK_ACTION_COPY | GDK_ACTION_MOVE); gtk_signal_connect(GTK_OBJECT(attach_clist), "drag_data_received", GTK_SIGNAL_FUNC(compose_attach_drag_received_cb), compose); @@ -4774,7 +4774,7 @@ static Compose *compose_create(PrefsAccount *account, ComposeMode mode) /* drag and drop */ gtk_drag_dest_set(text, GTK_DEST_DEFAULT_ALL, compose_mime_types, 1, - GDK_ACTION_COPY); + GDK_ACTION_COPY | GDK_ACTION_MOVE); gtk_signal_connect(GTK_OBJECT(text), "drag_data_received", GTK_SIGNAL_FUNC(compose_insert_drag_received_cb), compose);