From: Barry Warsaw Date: Tue, 27 Apr 1999 15:56:02 +0000 (+0000) Subject: Change Black/White button labels to not include the arrow X-Git-Tag: v1.6a1~1451 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f5e98572e58aa75a2a6ea5364576db5aaac212e5;p=thirdparty%2FPython%2Fcpython.git Change Black/White button labels to not include the arrow --- diff --git a/Tools/pynche/StripViewer.py b/Tools/pynche/StripViewer.py index f0a95877f911..e181db514d3b 100644 --- a/Tools/pynche/StripViewer.py +++ b/Tools/pynche/StripViewer.py @@ -355,7 +355,7 @@ class StripViewer: # 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 @@ class StripViewer: # 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)