diff options
author | Barry Warsaw <barry@python.org> | 1998-10-06 23:04:55 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1998-10-06 23:04:55 (GMT) |
commit | 84f52e0a16a60435331ab288fe2f6adfb42d963c (patch) | |
tree | b02e6a2b41609f92dfd3476e5f3fd545e5eb81c8 | |
parent | e55055d0d4013900b5f8e62e73b39703285fec2c (diff) | |
download | cpython-84f52e0a16a60435331ab288fe2f6adfb42d963c.zip cpython-84f52e0a16a60435331ab288fe2f6adfb42d963c.tar.gz cpython-84f52e0a16a60435331ab288fe2f6adfb42d963c.tar.bz2 |
RightARrow._create(): justify=RIGHT on the text object
-rw-r--r-- | Tools/pynche/StripViewer.py | 1 |
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 |