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:
parent
a5955bf09b
commit
e383ce9fe4
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user