Skip to content

Commit

Permalink
Merge pull request #810 from NeurodataWithoutBorders/deemphasize-proc…
Browse files Browse the repository at this point in the history
…ess-message

Deemphasize Process Line of Quit Message
  • Loading branch information
CodyCBakerPhD authored May 29, 2024
2 parents 4572575 + 9051dfd commit b60abb0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/electron/main/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,8 @@ app.on("before-quit", async (ev: Event) => {
type: "question",
buttons: ["Yes", "No"],
title: "Confirm",
message: "Any running process will be stopped. Are you sure you want to quit?",
message: 'Are you sure you want to quit?',
detail: 'Any running processes will be stopped.'
})

if (response !== 0) return // Skip quitting
Expand Down

0 comments on commit b60abb0

Please sign in to comment.