Better quitting

This commit is contained in:
Barry Warsaw 1998-10-06 19:48:35 +00:00
parent d5bcf9a343
commit 45c8d34216
3 changed files with 3 additions and 6 deletions

View file

@ -52,7 +52,6 @@ Shift + Left == -25
Shift + Right == +25
"""
import sys
from Tkinter import *
STOP = 'Stop'
@ -153,7 +152,7 @@ class DetailsViewer:
self.__l2.configure(text=text)
def __quit(self, event=None):
sys.exit(0)
self.__root.quit()
def __withdraw(self, event=None):
self.__root.withdraw()