I have had several users ask me if we can make the entity name larger in the Workfiles UI. See image below. I’ve been looking thru the code but cannot locate where this text size is specified. I assume this is somewhere in the qtwidgets framework? Any help?
The qss stylesheet file maybe?
Found it. Luckily it was in a hook so I didn’t have to fork the qtwidgets framework. Here are the lines to change: tk-multi-workfiles2/hooks/ui_config.py at 383f71afeefec81b2af0aae090e9163e4ccdcbc1 · shotgunsoftware/tk-multi-workfiles2 · GitHub
I changed this:
detail_items = [
"<small>{entity::icon}<small>",
"<big>{content::icon}</big>",
]
to this:
detail_items = [
"<big>{entity::icon}</big>",
"<big>{content::icon}</big>",
]
3 Likes