mirror of
https://github.com/python/cpython.git
synced 2025-07-23 03:05:38 +00:00
Title
This commit is contained in:
parent
c078b03d7f
commit
7c51a9a80b
3 changed files with 6 additions and 8 deletions
|
@ -17,7 +17,6 @@ in the text window (which only has a background).
|
|||
|
||||
import sys
|
||||
from Tkinter import *
|
||||
from pynche import __version__
|
||||
import ColorDB
|
||||
|
||||
class TextViewer:
|
||||
|
@ -25,7 +24,7 @@ class TextViewer:
|
|||
self.__sb = switchboard
|
||||
root = self.__root = Toplevel(parent, class_='Pynche')
|
||||
root.protocol('WM_DELETE_WINDOW', self.__withdraw)
|
||||
root.title('Pynche %s' % __version__)
|
||||
root.title('Pynche Text Window')
|
||||
root.iconname('Pynche Text Window')
|
||||
root.bind('<Alt-q>', self.__quit)
|
||||
root.bind('<Alt-Q>', self.__quit)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue