[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [39595] branches/soc-2011-onion/release/ scripts/startup/bl_ui/space_image.py: more renames missed

Antony Riakiotakis kalast at gmail.com
Mon Aug 22 02:33:37 CEST 2011


Revision: 39595
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=39595
Author:   psy-fi
Date:     2011-08-22 00:33:36 +0000 (Mon, 22 Aug 2011)
Log Message:
-----------
more renames missed

Modified Paths:
--------------
    branches/soc-2011-onion/release/scripts/startup/bl_ui/space_image.py

Modified: branches/soc-2011-onion/release/scripts/startup/bl_ui/space_image.py
===================================================================
--- branches/soc-2011-onion/release/scripts/startup/bl_ui/space_image.py	2011-08-21 21:17:55 UTC (rev 39594)
+++ branches/soc-2011-onion/release/scripts/startup/bl_ui/space_image.py	2011-08-22 00:33:36 UTC (rev 39595)
@@ -146,7 +146,7 @@
                     if ima.source in {'FILE', 'GENERATED'} and ima.type != 'MULTILAYER':
                         layout.operator("image.pack", text="Pack As PNG").as_png = True
 
-            if not context.tool_settings.use_uv_paint:
+            if not context.tool_settings.use_uv_sculpt:
                 layout.separator()
                 layout.prop(sima, "use_image_paint")
 
@@ -764,7 +764,7 @@
         row.operator("brush.curve_preset", icon="NOCURVE", text="").shape = 'MAX'
 
 
-class IMAGE_UV_paint_curve(bpy.types.Panel):
+class IMAGE_UV_sculpt_curve(bpy.types.Panel):
     bl_space_type = 'IMAGE_EDITOR'
     bl_region_type = 'UI'
     bl_label = "UV Sculpt Curve"
@@ -779,7 +779,7 @@
     def draw(self, context):
         layout = self.layout
 
-        toolsettings = context.tool_settings.uv_paint
+        toolsettings = context.tool_settings.uv_sculpt
         brush = toolsettings.brush
 
         layout.template_curve_mapping(brush, "curve")
@@ -793,7 +793,7 @@
         row.operator("brush.curve_preset", icon="NOCURVE", text="").shape = 'MAX'
 
 
-class IMAGE_UV_paint(bpy.types.Panel):
+class IMAGE_UV_sculpt(bpy.types.Panel):
     bl_space_type = 'IMAGE_EDITOR'
     bl_region_type = 'UI'
     bl_label = "UV Sculpt"




More information about the Bf-blender-cvs mailing list