Skip to content

Commit

Permalink
Fix #2306
Browse files Browse the repository at this point in the history
  • Loading branch information
julienduroure committed Aug 13, 2024
1 parent 93db353 commit 7951822
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/io_scene_gltf2/blender/com/gltf2_blender_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -572,8 +572,8 @@ def draw_item(self, context, layout, data, item, icon, active_data, active_propn
layout.context_pointer_set("id", action)

if self.layout_type in {'DEFAULT', 'COMPACT'}:
layout.prop(item.action, "name", text="", emboss=False)
layout.prop(item, "keep", text="", emboss=True)
layout.split().prop(item.action, "name", text="", emboss=False)
layout.split().prop(item, "keep", text="", emboss=True)

elif self.layout_type in {'GRID'}:
layout.alignment = 'CENTER'
Expand Down

0 comments on commit 7951822

Please sign in to comment.