[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [57504] trunk/blender/release/scripts/ startup/bl_ui/properties_paint_common.py: Fix #35774 Confusing Text in Texture Paint Panel

Antony Riakiotakis kalast at gmail.com
Sun Jun 16 16:54:14 CEST 2013


Revision: 57504
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=57504
Author:   psy-fi
Date:     2013-06-16 14:54:14 +0000 (Sun, 16 Jun 2013)
Log Message:
-----------
Fix #35774 Confusing Text in Texture Paint Panel

A simple copy-paste error.

Modified Paths:
--------------
    trunk/blender/release/scripts/startup/bl_ui/properties_paint_common.py

Modified: trunk/blender/release/scripts/startup/bl_ui/properties_paint_common.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_ui/properties_paint_common.py	2013-06-16 14:41:07 UTC (rev 57503)
+++ trunk/blender/release/scripts/startup/bl_ui/properties_paint_common.py	2013-06-16 14:54:14 UTC (rev 57504)
@@ -134,8 +134,8 @@
         layout.operator("brush.stencil_reset_transform").mask = True
 
     if brush.mask_texture:
-        layout.label(text="Mask Mapping:")
         col = layout.column()
+        col.label(text="Angle:")
         col.active = brush.brush_capabilities.has_texture_angle
         col.prop(mask_tex_slot, "angle", text="")
 




More information about the Bf-blender-cvs mailing list