summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1998-10-06 23:04:55 (GMT)
committerBarry Warsaw <barry@python.org>1998-10-06 23:04:55 (GMT)
commit84f52e0a16a60435331ab288fe2f6adfb42d963c (patch)
treeb02e6a2b41609f92dfd3476e5f3fd545e5eb81c8
parente55055d0d4013900b5f8e62e73b39703285fec2c (diff)
downloadcpython-84f52e0a16a60435331ab288fe2f6adfb42d963c.zip
cpython-84f52e0a16a60435331ab288fe2f6adfb42d963c.tar.gz
cpython-84f52e0a16a60435331ab288fe2f6adfb42d963c.tar.bz2
RightARrow._create(): justify=RIGHT on the text object
-rw-r--r--Tools/pynche/StripViewer.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/pynche/StripViewer.py b/Tools/pynche/StripViewer.py
index 44f006a..84fe741 100644
--- a/Tools/pynche/StripViewer.py
+++ b/Tools/pynche/StripViewer.py
@@ -129,6 +129,7 @@ class RightArrow(LeftArrow):
text = self._canvas.create_text(
x - self._ARROWWIDTH + 15, # TBD: kludge
self._ARROWHEIGHT - self._TEXTYOFFSET,
+ justify=RIGHT,
text='128',
tags=self._TAG)
return arrow, text