Merge pull request #471 from ynput/enhancement/applications-update-inline-docs

Applications: update inline docs for `only_available` in applications addon settings
This commit is contained in:
Mustafa Taher 2024-05-29 11:22:46 +03:00 committed by GitHub
commit 8366d2e8b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -212,7 +212,13 @@ class ApplicationsAddonSettings(BaseSettingsModel):
scope=["studio"]
)
only_available: bool = SettingsField(
True, title="Show only available applications")
True,
title="Show only available applications",
description="Enable to show only applications in AYON Launcher"
" for which the executable paths are found on the running machine."
" This applies as an additional filter to the applications defined in a "
" project's anatomy settings to ignore unavailable applications."
)
@validator("tool_groups")
def validate_unique_name(cls, value):