Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt
diff options
context:
space:
mode:
Diffstat (limited to 'TurtleArt')
-rw-r--r--TurtleArt/tawindow.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/TurtleArt/tawindow.py b/TurtleArt/tawindow.py
index 4ec98b0..18c0324 100644
--- a/TurtleArt/tawindow.py
+++ b/TurtleArt/tawindow.py
@@ -3762,10 +3762,10 @@ class TurtleArtWindow():
_('heading'), h))
self.activity.coordinates_label.show()
elif self.interactive_mode:
+ formatting = '%s — ' + formatting
self.parent.set_title(
- '%s — ' + formatting % (
- _('Turtle Art'), _('xcor'), x, _('ycor'), y,
- _('heading'), h))
+ formatting % (_('Turtle Art'), _('xcor'), x, _('ycor'), y,
+ _('heading'), h))
def showlabel(self, shp, label=''):
''' Display a message on a status block '''