summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1999-04-27 15:56:02 (GMT)
committerBarry Warsaw <barry@python.org>1999-04-27 15:56:02 (GMT)
commitf5e98572e58aa75a2a6ea5364576db5aaac212e5 (patch)
tree94f134744616c54ba3a4bb6795f133757b50ab9f /Tools
parent3f36a085feeba6217f791d683021816fa513c01f (diff)
downloadcpython-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.py4
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)