OSDN Git Service

Fix Bug of App.changeWindowTitle()
authormtsgi <oq@live.jp>
Thu, 1 Aug 2019 20:02:58 +0000 (05:02 +0900)
committermtsgi <oq@live.jp>
Thu, 1 Aug 2019 20:02:58 +0000 (05:02 +0900)
system.js

index fcd60a8..8ca3969 100644 (file)
--- 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;
     }