]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Change Black/White button labels to not include the arrow
authorBarry Warsaw <barry@python.org>
Tue, 27 Apr 1999 15:56:02 +0000 (15:56 +0000)
committerBarry Warsaw <barry@python.org>
Tue, 27 Apr 1999 15:56:02 +0000 (15:56 +0000)
Tools/pynche/StripViewer.py

index f0a95877f911316df9139fff32e0c15581ef8980..e181db514d3b48ecefbac3f4dcc0a83ea28794a6 100644 (file)
@@ -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)