Skip to content

Commit

Permalink
Change display window title
Browse files Browse the repository at this point in the history
  • Loading branch information
mjacobus committed Apr 21, 2022
1 parent acaee85 commit 406c401
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/ApplicationMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class ApplicationMenu {
],
},
{
label: "Main Window",
label: "Display Window",
submenu: [
{
label: "Resize",
Expand Down Expand Up @@ -71,7 +71,7 @@ class ApplicationMenu {
label: "DevTools",
submenu: [
{
label: "Main Window",
label: "Display Window",
click: () => driver.display.toggleDevTools(),
},
{
Expand All @@ -89,7 +89,7 @@ class ApplicationMenu {
getMoveToItems() {
return screen.getAllDisplays().map((display, index) => {
return {
label: `Display ${index + 1}`,
label: `Screen ${index + 1}`,
accelerator: `${index + 1}`,
click: () => {
this.driver.display.moveToDisplay(display);
Expand Down
2 changes: 1 addition & 1 deletion src/display-window.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<meta charset="UTF-8" />
<title>JW Play</title>
<title>JW Play :: Display</title>
<link
rel="stylesheet"
href="../node_modules/bootstrap/dist/css/bootstrap.min.css"
Expand Down

0 comments on commit 406c401

Please sign in to comment.