1
0
mirror of https://github.com/DarklightGames/io_scene_psk_psa.git synced 2025-02-07 22:41:26 +01:00

Fixed a bug with the default length of PSA import list

This commit is contained in:
Colin Basnett 2022-04-12 11:24:02 -07:00
parent a5955bf09b
commit e383ce9fe4

View File

@ -403,7 +403,7 @@ class PSA_PT_ImportPanel(Panel):
box.label(text=f'Sequences', icon='ARMATURE_DATA')
# select
rows = max(3, max(len(pg.sequence_list), 10))
rows = max(3, min(len(pg.sequence_list), 10))
row = box.row()
col = row.column()