plug-ins/imagemap/imap_cmd_move.c plug-ins/imagemap/imap_cmd_move_sash.c

2006-10-14  Michael Natterer  <mitch@gimp.org>

	* plug-ins/imagemap/imap_cmd_move.c
	* plug-ins/imagemap/imap_cmd_move_sash.c
	* plug-ins/imagemap/imap_main.c
	* plug-ins/imagemap/imap_object.c: use GDK_XOR instead of
	GDK_EQUIV. Fixes bug #311621.
This commit is contained in:
Michael Natterer
2006-10-14 19:15:40 +00:00
committed by Michael Natterer
parent ece8647df2
commit 750c0cdbce
5 changed files with 14 additions and 6 deletions

View File

@ -464,7 +464,7 @@ object_on_button_press(GtkWidget *widget, GdkEventButton *event, gpointer data)
factory = ((ObjectFactory_t*(*)(guint)) data)(event->state);
obj = object_factory_create_object(factory, x, y);
gdk_gc_set_function(preferences->normal_gc, GDK_EQUIV);
gdk_gc_set_function(preferences->normal_gc, GDK_XOR);
g_signal_connect(widget, "motion-notify-event",
G_CALLBACK(button_motion), factory);