From e383ce9fe455d973103bbe4a2b65f973a574be47 Mon Sep 17 00:00:00 2001 From: Colin Basnett Date: Tue, 12 Apr 2022 11:24:02 -0700 Subject: [PATCH] Fixed a bug with the default length of PSA import list --- io_scene_psk_psa/psa/importer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io_scene_psk_psa/psa/importer.py b/io_scene_psk_psa/psa/importer.py index a9af2cf..6ed3ac4 100644 --- a/io_scene_psk_psa/psa/importer.py +++ b/io_scene_psk_psa/psa/importer.py @@ -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()