Skip to content

Commit

Permalink
FIXED: issue window opened as child, fixes #42024
Browse files Browse the repository at this point in the history
  • Loading branch information
warpdesign authored and Rachel Macfarlane committed Jan 23, 2018
1 parent dd56a28 commit 7155f39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/gulpfile.hygiene.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion src/vs/platform/issue/electron-main/issueService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7155f39

Please sign in to comment.