Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Reynish <billrey@me.com>2020-04-18 15:21:22 +0300
committerWilliam Reynish <billrey@me.com>2020-04-18 15:21:22 +0300
commitc03185fe40dcc9c2b4cf3c9ef47d4546e0d003a8 (patch)
tree2c9719a784f237847a9ac83d83216c15b315c1e2 /io_scene_obj
parentce1a389eaebacc21bec8d82dca5f7d9f1cadc86c (diff)
OBJ UI: Tweaks to support new layout features
Diffstat (limited to 'io_scene_obj')
-rw-r--r--io_scene_obj/__init__.py14
1 files changed, 10 insertions, 4 deletions
diff --git a/io_scene_obj/__init__.py b/io_scene_obj/__init__.py
index 997deee2..b7ab6466 100644
--- a/io_scene_obj/__init__.py
+++ b/io_scene_obj/__init__.py
@@ -255,10 +255,16 @@ class OBJ_PT_export_include(bpy.types.Panel):
sfile = context.space_data
operator = sfile.active_operator
- layout.prop(operator, 'use_selection')
- layout.prop(operator, 'use_blen_objects')
- layout.prop(operator, 'group_by_object')
- layout.prop(operator, 'group_by_material')
+ col = layout.column(heading = "Limit to")
+ col.prop(operator, 'use_selection')
+
+ col = layout.column(heading = "Objects as", align = True)
+ col.prop(operator, 'use_blen_objects', text = "OBJ Objects")
+ col.prop(operator, 'group_by_object', text = "OBJ Groups")
+ col.prop(operator, 'group_by_material')
+
+ layout.separator()
+
layout.prop(operator, 'use_animation')