summaryrefslogtreecommitdiffstats
path: root/Tools/pynche/StripViewer.py
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/pynche/StripViewer.py')
-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 8d17d55..01bcbf6 100644
--- a/Tools/pynche/StripViewer.py
+++ b/Tools/pynche/StripViewer.py
@@ -151,9 +151,9 @@ class RightArrow(LeftArrow):
return arrow, text
def _x(self):
- coords = self._canvas.bbox(self._TAG)
+ coords = self._canvas.coords(self._TAG)
assert coords
- return coords[2] - 6 # BAW: kludge
+ return coords[0] + self._ARROWWIDTH