[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [51662] trunk/blender/source/blender/ editors/screen/screen_ops.c: Bugfix: because of fixed event checking, the ' area zone' didn't work anymore.

Ton Roosendaal ton at blender.org
Fri Oct 26 18:17:52 CEST 2012


Revision: 51662
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=51662
Author:   ton
Date:     2012-10-26 16:17:48 +0000 (Fri, 26 Oct 2012)
Log Message:
-----------
Bugfix: because of fixed event checking, the 'area zone' didn't work anymore.
Event that gets added should get zero'ed value.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/screen/screen_ops.c

Modified: trunk/blender/source/blender/editors/screen/screen_ops.c
===================================================================
--- trunk/blender/source/blender/editors/screen/screen_ops.c	2012-10-26 15:21:31 UTC (rev 51661)
+++ trunk/blender/source/blender/editors/screen/screen_ops.c	2012-10-26 16:17:48 UTC (rev 51662)
@@ -628,6 +628,7 @@
 		event.type = EVT_ACTIONZONE_AREA;
 	else
 		event.type = EVT_ACTIONZONE_REGION;
+	event.val = 0;
 	event.customdata = op->customdata;
 	event.customdatafree = TRUE;
 	op->customdata = NULL;




More information about the Bf-blender-cvs mailing list