Changed the grey/magenta/cyan/yellow label text slightly.

Changed Color Ties label to Color Variation Ties
This commit is contained in:
Barry Warsaw 1998-10-06 15:41:31 +00:00
parent 14e2cafe21
commit ae4ad6e454
1 changed files with 5 additions and 5 deletions

View File

@ -85,7 +85,7 @@ class DetailsViewer:
# color ties
frame = self.__frame = Frame(root)
frame.pack(expand=YES, fill=X)
self.__l1 = Label(frame, text='Color Ties:')
self.__l1 = Label(frame, text='Color Variation Ties:')
self.__l1.grid(row=0, column=0, columnspan=3, sticky=E)
self.__rvar = IntVar()
self.__rvar.set(4)
@ -146,10 +146,10 @@ class DetailsViewer:
if tie in (0, 1, 2, 4):
text = ''
else:
text = '(%s)' % {3: 'Cyan',
5: 'Magenta',
6: 'Yellow',
7: 'Grey'}[tie]
text = '(= %s Level)' % {3: 'Cyan',
5: 'Magenta',
6: 'Yellow',
7: 'Grey'}[tie]
self.__l2.configure(text=text)
def __quit(self, event=None):