Skip to content

Commit

Permalink
Update app.js
Browse files Browse the repository at this point in the history
  • Loading branch information
lutzroeder committed Mar 6, 2023
1 parent 9e535ef commit a2ce21f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ app.Application = class {
platform: process.platform,
separator: path.sep,
homedir: os.homedir(),
titlebar: true // process.platform === 'darwin'
titlebar: process.platform === 'darwin'
};
return this._environment;
}
Expand Down Expand Up @@ -265,8 +265,8 @@ app.Application = class {
_reload() {
const view = this._views.activeView;
if (view && view.path) {
view.open(path);
this._updateRecents(path);
view.open(view.path);
this._updateRecents(view.path);
}
}

Expand Down

0 comments on commit a2ce21f

Please sign in to comment.