diff options
author | Barry Warsaw <barry@python.org> | 1999-04-27 15:56:02 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1999-04-27 15:56:02 (GMT) |
commit | f5e98572e58aa75a2a6ea5364576db5aaac212e5 (patch) | |
tree | 94f134744616c54ba3a4bb6795f133757b50ab9f /Tools | |
parent | 3f36a085feeba6217f791d683021816fa513c01f (diff) | |
download | cpython-f5e98572e58aa75a2a6ea5364576db5aaac212e5.zip cpython-f5e98572e58aa75a2a6ea5364576db5aaac212e5.tar.gz cpython-f5e98572e58aa75a2a6ea5364576db5aaac212e5.tar.bz2 |
Change Black/White button labels to not include the arrow
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/pynche/StripViewer.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/pynche/StripViewer.py b/Tools/pynche/StripViewer.py index f0a9587..e181db5 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) |