Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ebb <matt@mke3.net>2010-03-29 09:37:34 +0400
committerMatt Ebb <matt@mke3.net>2010-03-29 09:37:34 +0400
commitbd7ed4f077d3ff86c1043642b5d228a95d9334a6 (patch)
tree1ffd8bdd0e22d24b88d64825bfc1d65158e0a1a2 /release
parenta59d24fd94d3a5426c13439dc912551e7d81d8fd (diff)
Fix [#21708] Copy/Paste Texture channels for Lamps/World not working
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_texture.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/ui/properties_texture.py b/release/scripts/ui/properties_texture.py
index 2894761e7ac..7a2213c719c 100644
--- a/release/scripts/ui/properties_texture.py
+++ b/release/scripts/ui/properties_texture.py
@@ -29,8 +29,8 @@ class TEXTURE_MT_specials(bpy.types.Menu):
def draw(self, context):
layout = self.layout
- layout.operator("material.mtex_copy", icon='COPYDOWN')
- layout.operator("material.mtex_paste", icon='PASTEDOWN')
+ layout.operator("texture.slot_copy", icon='COPYDOWN')
+ layout.operator("texture.slot_paste", icon='PASTEDOWN')
class TEXTURE_MT_envmap_specials(bpy.types.Menu):