@@ -1327,17 +1327,16 @@ def draw(self, context):
13271327 col .label (text = "Atlas Settings:" )
13281328 row = col .row ()
13291329 row .prop (self .scene , "coa_atlas_mode" , expand = True )
1330- col .prop (self .scene , "coa_sprite_scale" , slider = True )
13311330 if self .scene .coa_atlas_mode == "LIMIT_SIZE" :
13321331 subcol = col .column (align = True )
1333- subcol .label (text = "Texture Atlas Size:" )
13341332 subcol .prop (self .scene , "coa_atlas_resolution_x" , text = "X" )
13351333 subcol .prop (self .scene , "coa_atlas_resolution_y" , text = "Y" )
1334+ col .prop (self .scene , "coa_sprite_scale" , slider = True )
13361335 col .prop (self .scene , "coa_atlas_island_margin" )
1337- col .label ( text = "Animation Settings:" )
1338- col .prop (self .scene , "coa_export_bake_anim" )
1336+ subrow = col .row ( align = True )
1337+ subrow .prop (self .scene , "coa_export_bake_anim" )
13391338 if self .scene .coa_export_bake_anim :
1340- col .prop (self .scene , "coa_export_bake_steps" )
1339+ subrow .prop (self .scene , "coa_export_bake_steps" )
13411340 col .prop (self .scene , "coa_minify_json" )
13421341 op = col .operator ("coa_tools.export_dragon_bones" )
13431342
0 commit comments