We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e232228 commit 6627ad0Copy full SHA for 6627ad0
1 file changed
python/tkterminal.py
@@ -278,8 +278,9 @@ def close(self, event=None):
278
topmost = blocker
279
blocker.attributes('-topmost', False)
280
message = self.blockers[blocker]
281
- answer = askyesno('Quit', message + '\nDo you care?')
282
- if answer:
+ answer = askyesno('Quit',
+ message + '\nDo you want to quit anyway?')
283
+ if not answer:
284
can_quit = False
285
break;
286
if topmost:
0 commit comments