[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [24752] trunk/blender/source/blender/ editors/physics/physics_ops.c: * Made particle painting use leftmouse, rather than actionmouse, consistent with other paint tools

Matt Ebb matt at mke3.net
Sun Nov 22 07:27:17 CET 2009


Revision: 24752
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=24752
Author:   broken
Date:     2009-11-22 07:27:17 +0100 (Sun, 22 Nov 2009)

Log Message:
-----------
* Made particle painting use leftmouse, rather than actionmouse, consistent with other paint tools

Modified Paths:
--------------
    trunk/blender/source/blender/editors/physics/physics_ops.c

Modified: trunk/blender/source/blender/editors/physics/physics_ops.c
===================================================================
--- trunk/blender/source/blender/editors/physics/physics_ops.c	2009-11-22 06:22:53 UTC (rev 24751)
+++ trunk/blender/source/blender/editors/physics/physics_ops.c	2009-11-22 06:27:17 UTC (rev 24752)
@@ -108,8 +108,8 @@
 	WM_keymap_add_item(keymap, "PARTICLE_OT_hide", HKEY, KM_PRESS, 0, 0);
 	RNA_enum_set(WM_keymap_add_item(keymap, "PARTICLE_OT_hide", HKEY, KM_PRESS, KM_SHIFT, 0)->ptr, "unselected", 1);
 
-	WM_keymap_add_item(keymap, "PARTICLE_OT_brush_edit", ACTIONMOUSE, KM_PRESS, 0, 0);
-	WM_keymap_add_item(keymap, "PARTICLE_OT_brush_edit", ACTIONMOUSE, KM_PRESS, KM_SHIFT, 0);
+	WM_keymap_add_item(keymap, "PARTICLE_OT_brush_edit", LEFTMOUSE, KM_PRESS, 0, 0);
+	WM_keymap_add_item(keymap, "PARTICLE_OT_brush_edit", LEFTMOUSE, KM_PRESS, KM_SHIFT, 0);
 	RNA_enum_set(WM_keymap_add_item(keymap, "PARTICLE_OT_brush_radial_control", FKEY, KM_PRESS, 0, 0)->ptr, "mode", WM_RADIALCONTROL_SIZE);
 	RNA_enum_set(WM_keymap_add_item(keymap, "PARTICLE_OT_brush_radial_control", FKEY, KM_PRESS, KM_SHIFT, 0)->ptr, "mode", WM_RADIALCONTROL_STRENGTH);
 





More information about the Bf-blender-cvs mailing list