Skip to content

Commit a950cdf

Browse files
committed
Bugfixes
- Fixed: version check was wrong direction. - Added: Copying proxies now can work from active to selected without a dialog
1 parent 9e379cf commit a950cdf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ArmaToolbox/MDLImporter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ def loadLOD(context, filePtr, objectName, materialData, layerFlag, lodnr):
525525
# be discarded. Don't want that
526526
#mymesh.validate()
527527
print("Normal calculation")
528-
if (4,0,0) < bpy.app.version:
528+
if (4,0,0) > bpy.app.version:
529529
mymesh.calc_normals()
530530
for poly in mymesh.polygons:
531531
poly.use_smooth = True

ArmaToolbox/panels.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def draw(self, context):
186186
iconName="GHOST_ENABLED"
187187
if name[:5].upper() == "CARGO":
188188
iconName="GHOST_ENABLED"
189-
row.label(text = name, icon=iconName)
189+
row.label(text = name + "." + str(prox.index), icon=iconName)
190190

191191

192192
if prox.open:

0 commit comments

Comments
 (0)