Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
improvements for the title bar text and file path navigation
#2
the title change can easy be achieved by running this script when LA started
 
Code:
Copy      Help
/*/ role editorExtension; testInternal Au.Editor; r Au.Editor.dll; r Au.Controls.dll; /*/

var filesPanel = Panels.Files.TreeControl;

filesPanel.SelectionChanged += (o, e) => {
    ScriptEditor
        .MainWindow()
        .SetText(
            filesPanel?.SelectedItem?.DisplayText != null
                ? $"LibreAutomate - {filesPanel.SelectedItem.DisplayText}"
                : "LibreAutomate"
        );
};


Messages In This Thread
RE: improvements for the title bar text and file path navigation - by marktech - 04-30-2024, 08:56 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)