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:
authorNathan Letwory <nathan@letworyinteractive.com>2010-09-08 00:27:40 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-09-08 00:27:40 +0400
commit20ca4b188dbce710cce4e4460c5883145b24d5e5 (patch)
treea4c80d028ddeaf56d78fc848207fe31521e513d5 /release
parent115b25673832049b746835357d63d8d2dbee5229 (diff)
Fix [#23716] Add background image broken
Reported by Josh Wedlake
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/space_view3d.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py
index 15307612395..16cb544e065 100644
--- a/release/scripts/ui/space_view3d.py
+++ b/release/scripts/ui/space_view3d.py
@@ -2165,7 +2165,7 @@ class VIEW3D_PT_background_image(bpy.types.Panel):
if bg.image:
row.prop(bg.image, "name", text="", emboss=False)
else:
- row.label(label="Not Set")
+ row.label(text="Not Set")
row.operator("view3d.remove_background_image", text="", emboss=False, icon='X').index = i
box.prop(bg, "view_axis", text="Axis")