John Hartman
Member
Currently, Studio mode shows "Preview" above the preview pane, and "Program" above the program pane. I tend to have a bunch of similar scenes, and it would be helpful to me to have the scene names shown as well. This post has code that does this, as shown in the image below.
My prototype requires three small changes to /UI/window-basic-main-transitions.cpp (diff file attached, renamed to make the forum happy)
This cheap-ass prototype glues together translatable strings "StudioMode.Preview" and "StudioMode.Program", adding a colon and the scene name. That works in English, and probably in most European languages, but probably not in RTL languages like Arabic and Hebrew, and I have no idea about Asian languages. A proper implementation would add ": %1" to the translation strings, but involves touching about 59 locale files, which is beyond my capabilities. "StudioMode.Preview" is also used as a title in the Settings dialog, so a new string would be required for Preview. Another option would be to show ONLY the scene name, but "Preview" and "Program" do add utility.
Comments and suggestions appreciated.
My prototype requires three small changes to /UI/window-basic-main-transitions.cpp (diff file attached, renamed to make the forum happy)
This cheap-ass prototype glues together translatable strings "StudioMode.Preview" and "StudioMode.Program", adding a colon and the scene name. That works in English, and probably in most European languages, but probably not in RTL languages like Arabic and Hebrew, and I have no idea about Asian languages. A proper implementation would add ": %1" to the translation strings, but involves touching about 59 locale files, which is beyond my capabilities. "StudioMode.Preview" is also used as a title in the Settings dialog, so a new string would be required for Preview. Another option would be to show ONLY the scene name, but "Preview" and "Program" do add utility.
Comments and suggestions appreciated.