[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [58069] trunk/blender: fix [#36043] Missing Tooltip for Excluded Paths field of Auto Run Python Scripts in User Preferences - > File

Campbell Barton ideasman42 at gmail.com
Mon Jul 8 09:40:32 CEST 2013


Revision: 58069
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=58069
Author:   campbellbarton
Date:     2013-07-08 07:40:32 +0000 (Mon, 08 Jul 2013)
Log Message:
-----------
fix [#36043] Missing Tooltip for Excluded Paths field of Auto Run Python Scripts in User Preferences -> File

also select more/less were flipped for mesh menu compared to everywhere else.

Modified Paths:
--------------
    trunk/blender/release/scripts/startup/bl_ui/space_view3d.py
    trunk/blender/source/blender/windowmanager/intern/wm_operators.c

Modified: trunk/blender/release/scripts/startup/bl_ui/space_view3d.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_ui/space_view3d.py	2013-07-08 07:25:33 UTC (rev 58068)
+++ trunk/blender/release/scripts/startup/bl_ui/space_view3d.py	2013-07-08 07:40:32 UTC (rev 58069)
@@ -617,8 +617,8 @@
 
         layout.separator()
 
+        layout.operator("mesh.select_more", text="More")
         layout.operator("mesh.select_less", text="Less")
-        layout.operator("mesh.select_more", text="More")
 
         layout.separator()
 

Modified: trunk/blender/source/blender/windowmanager/intern/wm_operators.c
===================================================================
--- trunk/blender/source/blender/windowmanager/intern/wm_operators.c	2013-07-08 07:25:33 UTC (rev 58068)
+++ trunk/blender/source/blender/windowmanager/intern/wm_operators.c	2013-07-08 07:40:32 UTC (rev 58069)
@@ -1880,6 +1880,7 @@
 {
 	ot->name = "Add Autoexec Path";
 	ot->idname = "WM_OT_userpref_autoexec_path_add";
+	ot->description = "Add path to exclude from autoexecution";
 
 	ot->exec = wm_userpref_autoexec_add_exec;
 	ot->poll = WM_operator_winactive;
@@ -1901,6 +1902,7 @@
 {
 	ot->name = "Remove Autoexec Path";
 	ot->idname = "WM_OT_userpref_autoexec_path_remove";
+	ot->description = "Remove path to exclude from autoexecution";
 
 	ot->exec = wm_userpref_autoexec_remove_exec;
 	ot->poll = WM_operator_winactive;




More information about the Bf-blender-cvs mailing list