[Bf-extensions-cvs] [16784603] master: Merge branch 'blender-v2.83-release'

Julien Duroure noreply at git.blender.org
Tue May 5 21:30:46 CEST 2020


Commit: 167846039f7db9b25687e19bf1f927af8523176b
Author: Julien Duroure
Date:   Tue May 5 21:30:39 2020 +0200
Branches: master
https://developer.blender.org/rBA167846039f7db9b25687e19bf1f927af8523176b

Merge branch 'blender-v2.83-release'

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



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

diff --cc io_scene_gltf2/__init__.py
index 5c620c87,648cedc7..336a35df
--- a/io_scene_gltf2/__init__.py
+++ b/io_scene_gltf2/__init__.py
@@@ -26,6 -26,6 +26,7 @@@ bl_info = 
      'category': 'Import-Export',
  }
  
++
  def get_version_string():
      return str(bl_info['version'][0]) + '.' + str(bl_info['version'][1]) + '.' + str(bl_info['version'][2])
  
@@@ -560,15 -560,11 +561,14 @@@ class GLTF_PT_export_include(bpy.types.
          sfile = context.space_data
          operator = sfile.active_operator
  
 -        layout.prop(operator, 'use_selection')
 -        layout.prop(operator, 'export_extras')
 -        layout.prop(operator, 'export_cameras')
 -        layout.prop(operator, 'export_lights')
 +        col = layout.column(heading = "Limit to", align = True)
 +        col.prop(operator, 'use_selection')
 +
 +        col = layout.column(heading = "Data", align = True)
 +        col.prop(operator, 'export_extras')
 +        col.prop(operator, 'export_cameras')
 +        col.prop(operator, 'export_lights')
  
- 
  class GLTF_PT_export_transform(bpy.types.Panel):
      bl_space_type = 'FILE_BROWSER'
      bl_region_type = 'TOOL_PROPS'



More information about the Bf-extensions-cvs mailing list