Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f5e9857

Browse files
committed
Change Black/White button labels to not include the arrow
1 parent 3f36a08 commit f5e9857

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Tools/pynche/StripViewer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ def __init__(self, switchboard, master=None):
355355

356356
# create the black button
357357
blackbtn = Button(frame2,
358-
text='<- Black',
358+
text='Black',
359359
command=self.__toblack)
360360
blackbtn.grid(row=0, column=0, rowspan=2, sticky=W, padx=padx)
361361

@@ -388,7 +388,7 @@ def __init__(self, switchboard, master=None):
388388

389389
# create the white button
390390
whitebtn = Button(frame2,
391-
text='White ->',
391+
text='White',
392392
command=self.__towhite)
393393
whitebtn.grid(row=0, column=2, rowspan=2, sticky=E, padx=padx)
394394

0 commit comments

Comments
 (0)