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:
authorMartin Poirier <theeth@yahoo.com>2010-08-03 02:52:55 +0400
committerMartin Poirier <theeth@yahoo.com>2010-08-03 02:52:55 +0400
commit15e475339670c4166c495fd9b1a559fac0915995 (patch)
tree4e1c183afac5fea77bc1625eeddd2a3a8d391060
parentf811ab13567b5bc4540f7988dcff212e9cedeb92 (diff)
[#23156] Cannot Edit Custom Properties
Missing import after moving operators around.
-rw-r--r--release/scripts/op/wm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/op/wm.py b/release/scripts/op/wm.py
index 0cd68cf6368..3b34225b7da 100644
--- a/release/scripts/op/wm.py
+++ b/release/scripts/op/wm.py
@@ -21,7 +21,7 @@
import bpy
from bpy.props import *
-
+from rna_prop_ui import rna_idprop_ui_prop_get, rna_idprop_ui_prop_clear
class MESH_OT_delete_edgeloop(bpy.types.Operator):
'''Delete an edge loop by merging the faces on each side to a single face loop'''