From f6e04aed60bc57ecb9010db3687f35314104f799 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Tue, 7 Oct 2008 21:10:29 +0000 Subject: [PATCH] =?UTF-8?q?Bug=20555362=20=E2=80=93=20gimp-remote=20is=20n?= =?UTF-8?q?ot=20working=20properly?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2008-10-07 Michael Natterer Bug 555362 – gimp-remote is not working properly * app/widgets/gimptoolbox-dnd.c (gimp_toolbox_dnd_init): add the window itself as drop traget again so gimp-remote works. svn path=/trunk/; revision=27164 --- ChangeLog | 7 +++++++ app/widgets/gimptoolbox-dnd.c | 3 +++ 2 files changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index 890a4cd2b7..d32030610a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-10-07 Michael Natterer + + Bug 555362 – gimp-remote is not working properly + + * app/widgets/gimptoolbox-dnd.c (gimp_toolbox_dnd_init): add the + window itself as drop traget again so gimp-remote works. + 2008-10-07 Michael Natterer * app/*/Makefile.am: reorder sections consistently. Remove diff --git a/app/widgets/gimptoolbox-dnd.c b/app/widgets/gimptoolbox-dnd.c index 93cb09f76e..ff5754d07f 100644 --- a/app/widgets/gimptoolbox-dnd.c +++ b/app/widgets/gimptoolbox-dnd.c @@ -93,6 +93,9 @@ gimp_toolbox_dnd_init (GimpToolbox *toolbox) dock = GIMP_DOCK (toolbox); + gimp_dnd_uri_list_dest_add (GTK_WIDGET (toolbox), + gimp_toolbox_drop_uri_list, + dock->context); gimp_dnd_uri_list_dest_add (toolbox->vbox, gimp_toolbox_drop_uri_list, dock->context);