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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-09-19 03:14:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-09-19 03:14:37 +0300
commit69aac13524374d62fee5a99139ba74ed535ea767 (patch)
tree682cce2aa7ed8df32ed741b60c4156ffc8a5501d /source
parenta30f32891ffd562293cec812477065d6ca49920e (diff)
Correct invalid enum default
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/uvedit/uvedit_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/uvedit/uvedit_ops.c b/source/blender/editors/uvedit/uvedit_ops.c
index f9eda731a92..b212df34954 100644
--- a/source/blender/editors/uvedit/uvedit_ops.c
+++ b/source/blender/editors/uvedit/uvedit_ops.c
@@ -1803,7 +1803,7 @@ static void UV_OT_align(wmOperatorType *ot)
ot->poll = ED_operator_uvedit;
/* properties */
- RNA_def_enum(ot->srna, "axis", axis_items, 'a', "Axis", "Axis to align UV locations on");
+ RNA_def_enum(ot->srna, "axis", axis_items, UV_ALIGN_AUTO, "Axis", "Axis to align UV locations on");
}
/** \} */