Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
After updating the LA portable version, it won't start.
#12
Add this script to Options > Workspace > Run...

Code:
Copy      Help
// script "Set LA window title.cs"
/*/ role editorExtension; testInternal Au.Editor; r Au.Editor.dll; /*/

string baseText = "LibreAutomate" + (ScriptEditor.IsPortable ? " (portable)" : "");
bool once = false;
FileNode prevFile = null;
App.Timer025sWhenVisible += () => {
    var f = App.Model.CurrentFile;
    if (!once || f != prevFile) {
        once = true;
        prevFile = f;
        var s = f == null ? baseText : $"{baseText} - {f}";
        App.Wmain.Title = s;
    }
};


Messages In This Thread
RE: After updating the LA portable version, it won't start. - by Gintaras - 09-29-2024, 02:34 PM

Forum Jump:


Users browsing this thread: 10 Guest(s)