Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--TurtleArt/talogo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/TurtleArt/talogo.py b/TurtleArt/talogo.py
index a10eff0..1e5bf07 100644
--- a/TurtleArt/talogo.py
+++ b/TurtleArt/talogo.py
@@ -594,9 +594,9 @@ class LogoCode:
""" Update the label of value blocks to reflect current value """
if not self.tw.interactive_mode:
return
- self.tw.display_coordinates()
if self.tw.hide:
return
+ self.tw.display_coordinates()
if value is None:
for block in self.value_blocks_to_update[name]:
block.spr.set_label(block_names[name][0])