From d2e42ff1f5873a23e27adb446245b8c7250bc585 Mon Sep 17 00:00:00 2001 From: mtsgi Date: Fri, 2 Aug 2019 05:02:58 +0900 Subject: [PATCH] Fix Bug of App.changeWindowTitle() --- system.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system.js b/system.js index fcd60a8..8ca3969 100644 --- a/system.js +++ b/system.js @@ -1128,8 +1128,8 @@ const Notification = new function() { const App = new function() { this.changeWindowTitle = ( _pid, _t ) => { - $( "#tname"+_pid ).text( _str ); - $( "#wtname"+_pid ).text( _str ); + $( "#tname"+_pid ).text( _t ); + $( "#wtname"+_pid ).text( _t ); process[_pid].title = _t; return App; } -- 2.11.0