UI: Change default height of bookmark UIList

Update bookmark UIList, so it appears same as Vertex Groups,
Shape Keys, etc. (by default 3 and 5 rows visible depending on
element count)

See images in PR description

Pull Request: https://projects.blender.org/blender/blender/pulls/141790
This commit is contained in:
Trantor
2025-07-23 11:00:49 +02:00
committed by Pratik Borhade
parent f154b03cea
commit 665aff0797

View File

@@ -303,12 +303,14 @@ class FILEBROWSER_PT_bookmarks_favorites(FileBrowserPanel, Panel):
row.template_list(
"FILEBROWSER_UL_dir", "bookmarks", space, "bookmarks",
space, "bookmarks_active", item_dyntip_propname="path",
rows=(2 if num_rows < 2 else 4), maxrows=10,
rows=(3 if num_rows < 2 else 5), maxrows=10,
)
col = row.column(align=True)
col.operator("file.bookmark_add", icon='ADD', text="")
col.operator("file.bookmark_delete", icon='REMOVE', text="")
col.separator()
col.menu("FILEBROWSER_MT_bookmarks_context_menu", icon='DOWNARROW_HLT', text="")
if num_rows > 1: