Change Black/White button labels to not include the arrow

This commit is contained in:
Barry Warsaw 1999-04-27 15:56:02 +00:00
parent 3f36a085fe
commit f5e98572e5
1 changed files with 2 additions and 2 deletions

View File

@ -355,7 +355,7 @@ def __init__(self, switchboard, master=None):
# create the black button
blackbtn = Button(frame2,
text='<- Black',
text='Black',
command=self.__toblack)
blackbtn.grid(row=0, column=0, rowspan=2, sticky=W, padx=padx)
@ -388,7 +388,7 @@ def __init__(self, switchboard, master=None):
# create the white button
whitebtn = Button(frame2,
text='White ->',
text='White',
command=self.__towhite)
whitebtn.grid(row=0, column=2, rowspan=2, sticky=E, padx=padx)