FIXED: issue window opened as child, fixes #42024

This commit is contained in:
Nicolas Ramz 2018-01-23 18:37:15 +01:00 committed by Rachel Macfarlane
parent dd56a283a8
commit 7155f39d03
2 changed files with 2 additions and 2 deletions

View file

@ -198,7 +198,7 @@ const hygiene = exports.hygiene = (some, options) => {
tsfmt.processString(file.path, file.contents.toString('utf8'), {
verify: true,
tsfmt: true,
// verbose: true
verbose: true
}).then(result => {
if (result.error) {
console.error(result.message);

View file

@ -40,7 +40,7 @@ export class IssueService implements IIssueService {
width: 800,
height: 900,
title: 'Issue Reporter',
alwaysOnTop: true
parent: BrowserWindow.getFocusedWindow()
});
this._issueWindow.setMenuBarVisibility(false); // workaround for now, until a menu is implemented