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:
authorCampbell Barton <ideasman42@gmail.com>2010-12-17 08:12:36 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-12-17 08:12:36 +0300
commit4558d45d460d5bd331cc58fc2f38c4fc87699a53 (patch)
treee36e3f403d23c9718e53ae65b7f5052a865f6fbd /release
parent5c621bd7f5a2647547b8a18eccce8fa1dee47500 (diff)
WM_OT_path_open was failing with non utf8 paths.
Diffstat (limited to 'release')
-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 8879b2bbaf2..1435d34934c 100644
--- a/release/scripts/op/wm.py
+++ b/release/scripts/op/wm.py
@@ -528,7 +528,7 @@ class WM_OT_path_open(bpy.types.Operator):
bl_idname = "wm.path_open"
bl_label = ""
- filepath = StringProperty(name="File Path", maxlen=1024)
+ filepath = StringProperty(name="File Path", maxlen=1024, subtype='FILE_PATH')
def execute(self, context):
import sys