Skip to content

Commit 6627ad0

Browse files
committed
Reword the message about quitting without closing the Settings window.
1 parent e232228 commit 6627ad0

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

python/tkterminal.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,8 +278,9 @@ def close(self, event=None):
278278
topmost = blocker
279279
blocker.attributes('-topmost', False)
280280
message = self.blockers[blocker]
281-
answer = askyesno('Quit', message + '\nDo you care?')
282-
if answer:
281+
answer = askyesno('Quit',
282+
message + '\nDo you want to quit anyway?')
283+
if not answer:
283284
can_quit = False
284285
break;
285286
if topmost:

0 commit comments

Comments
 (0)