mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
19 lines
502 B
Python
19 lines
502 B
Python
WindowTitle = "Pyblish" # Customize the window of the pyblish-lite window.
|
|
UseLabel = True # Customize whether to show label names for plugins.
|
|
|
|
# Customize which tab to start on. Possible choices are: "artist", "overview"
|
|
# and "terminal".
|
|
InitialTab = "artist"
|
|
|
|
# Customize the window size.
|
|
WindowSize = (430, 600)
|
|
|
|
TerminalFilters = {
|
|
"info": True,
|
|
"log_debug": True,
|
|
"log_info": True,
|
|
"log_warning": True,
|
|
"log_error": True,
|
|
"log_critical": True,
|
|
"traceback": True,
|
|
}
|