[Bf-extensions-cvs] [e2c5cd73] master: Fix T55960: Bsurfaces error with international 'Translate New Data' option

Philipp Oeser noreply at git.blender.org
Fri Jul 13 11:37:21 CEST 2018


Commit: e2c5cd7326840b89c2c8b80c5b85339206b3f0ac
Author: Philipp Oeser
Date:   Fri Jul 13 11:21:39 2018 +0200
Branches: master
https://developer.blender.org/rBAe2c5cd7326840b89c2c8b80c5b85339206b3f0ac

Fix T55960: Bsurfaces error with international 'Translate New Data'
option

thanx @icyp for investigating

===================================================================

M	mesh_bsurfaces.py

===================================================================

diff --git a/mesh_bsurfaces.py b/mesh_bsurfaces.py
index 80943858..b6debec2 100644
--- a/mesh_bsurfaces.py
+++ b/mesh_bsurfaces.py
@@ -3156,8 +3156,10 @@ class GPENCIL_OT_SURFSK_add_surface(Operator):
                 # XXX gpencil.convert now keep org object as active/selected, *not* newly created curve!
                 # XXX This is far from perfect, but should work in most cases...
                 # self.original_curve = bpy.context.object
+                gplayer_prefix_translated = bpy.app.translations.pgettext_data('GP_Layer')
                 for ob in bpy.context.selected_objects:
-                    if ob != bpy.context.scene.objects.active and ob.name.startswith("GP_Layer"):
+                    if ob != bpy.context.scene.objects.active and \
+                       ob.name.startswith((gplayer_prefix_translated, 'GP_Layer')):
                         self.original_curve = ob
                 self.using_external_curves = False
             elif self.strokes_type == "EXTERNAL_CURVE":



More information about the Bf-extensions-cvs mailing list