-
Notifications
You must be signed in to change notification settings - Fork 115
add full path of the bob file as a tab name, if no name indicated #3655
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
georgweiss
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While this works as described, I am not quite sure about the use case. By default the Name property of a display is Display, and only if you set Name to an empty string will the tab title show file path.
Should we not consider to let the Name property default to the file path and let user decide if a change is needed?
1a271ae to
1f969be
Compare
|
So there are a few factors that contributing to the above When screens are converted from .opi or .edl then the Display name is an empty string... this might be the issue @agaget is primarily trying to address here. When you create a new display then the editor uses a template... the default being When running old .opi screens when they don't have a name the runtime uses the complete file path as the tab name. While the complete file path seems very informative it gets very messy very quickly... usually users will have many tabs open and if each tab is deploying the complete path which might be hundreds or chars the tab heading becomes very large. I would hope we can come up with a holistic and consistent solution here and I would vote for having just the file name... the complete path can be accessed via the display info ( yes it is 2 more clicks.. but it keeps the tabs more manageable ) |
1f969be to
6190428
Compare
|
Hi, I would agree with @shroffk , just the file name is probably enough, but in this case to be consistent I can change it also in the runtime instance. |
|
OK, so I lack the full picture as we do not migrate from .opi and .edl files. Also agree that full path is not needed. |
|
So, I think we can make the following changes
This should also help address the original issue that @agaget has encountered while having a similar behaviour across edit + runtime |
05b8a8a to
70ced28
Compare
|
Ok, so I have changed the code a little bit.
Do you think changing the model will interfer with other functionnality ? |

Currently if no name is indicated in the bob file properties, only

[Edit]is displayed, it can be confusing during edition.Now thanks to the DisplayModel information, the complete path of the file is displayed instead following the example of the runtime instance.
Result
also tested by @lcaouen