mirror of https://github.com/python/cpython.git
Change Black/White button labels to not include the arrow
This commit is contained in:
parent
3f36a085fe
commit
f5e98572e5
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue