Open
Conversation
MustafaJafar
approved these changes
Oct 30, 2025
Member
MustafaJafar
left a comment
There was a problem hiding this comment.
It works. Thanks.
Merging decision should be up to @iLLiCiTiT


BigRoy
approved these changes
Oct 30, 2025
Collaborator
BigRoy
left a comment
There was a problem hiding this comment.
I like it visually. Code seems ok, but I think @iLLiCiTiT will be the more critical one in this area, so pending his code review.
iLLiCiTiT
reviewed
Oct 31, 2025
Comment on lines
+134
to
+135
| @property | ||
| def title(self): |
Member
There was a problem hiding this comment.
Should be method, not property, moved below (after public methods). And the app name should be defined in controller, I really do try a lot to not use anything host related in UI code.
Suggested change
| @property | |
| def title(self): | |
| def _get_title(self): |
iLLiCiTiT
requested changes
Nov 6, 2025
Member
iLLiCiTiT
left a comment
There was a problem hiding this comment.
Please move pipeline logic to backend (controller).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changelog Description
Include the current application name in AYON tools Loader, Workfiles, Publisher, and Scene Inventory.
Additional Info
This pull request updates the window titles for several AYON tool windows to dynamically include the current application name, improving context for users working across multiple host applications. The changes introduce a new
titleproperty in each window class, which constructs the window title using either theAYON_APP_NAMEenvironment variable or the value returned byget_current_host_name().These changes are for the Loader, Workfiles, Publisher, and Scene Inventory.
Title looks like this when launched from a DCC like Harmony:

And in Windows 11 for example, when hovering over the Taskbar item, clearly shows the DCC this tool belongs to.

Window Title Improvements:
titleproperty toLoaderWindow,PublisherWindow,SceneInventoryWindow, andWorkfilesToolWindowclasses to dynamically generate window titles with the current application name, usingAYON_APP_NAMEorget_current_host_name()if available. [1] [2] [3] [4]titleproperty for setting the window title, replacing previous static titles. [1] [2] [3]Imports and Dependencies:
osandget_current_host_namein all relevant files to support dynamic title generation. [1] [2] [3] [4]Testing Notes