Skip to content

Commit

Permalink
Fix window names #206
Browse files Browse the repository at this point in the history
  • Loading branch information
Levminer committed Apr 29, 2022
1 parent bcddb1c commit 91ab7c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1676,7 +1676,7 @@ const createMenu = () => {
const toggle = () => {
if (window_tools.getTitle() !== "Authme (Edit codes)") {
window_tools.loadFile("./app/edit/index.html")
window_tools.setTitle("Authme Edit codes")
window_tools.setTitle("Authme (Edit codes)")

window_tools.maximize()
window_tools.show()
Expand Down Expand Up @@ -1720,7 +1720,7 @@ const createMenu = () => {
const toggle = () => {
if (window_tools.getTitle() !== "Authme (Import)") {
window_tools.loadFile("./app/import/index.html")
window_tools.setTitle("Authme Import")
window_tools.setTitle("Authme (Import)")

window_tools.maximize()
window_tools.show()
Expand Down Expand Up @@ -1764,7 +1764,7 @@ const createMenu = () => {
const toggle = () => {
if (window_tools.getTitle() !== "Authme (Export)") {
window_tools.loadFile("./app/export/index.html")
window_tools.setTitle("Authme Export")
window_tools.setTitle("Authme (Export)")

window_tools.maximize()
window_tools.show()
Expand Down

0 comments on commit 91ab7c5

Please sign in to comment.