Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS6
-rw-r--r--TurtleArtActivity.py4
2 files changed, 8 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 9a9a7d7..3040c24 100644
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,12 @@ ENHANCEMENTS
- rotation of text and images
- filled arcs
+NOTE
+* For performance reasons, the coordinate grids are now drawn directly
+ onto the turtle canvas. This has two consequences: (1) the grids cannot
+ be erased except by erasing the entire screen; and (2) the turtle can
+ draw on top of the grid.
+
122
ENHANCEMENTS
diff --git a/TurtleArtActivity.py b/TurtleArtActivity.py
index 778b859..fd44ebc 100644
--- a/TurtleArtActivity.py
+++ b/TurtleArtActivity.py
@@ -769,8 +769,8 @@ class TurtleArtActivity(activity.Activity):
_logger.debug('Write file: %s' % file_path)
self.metadata['mime_type'] = 'application/x-turtle-art'
self.metadata[_('turtle blocks')] = ''.join(self.tw.used_block_list)
- self.metadata['activity_data'] = data_to_string([_('activity count'),
- _('turtle blocks')])
+ self.metadata['public'] = data_to_string([_('activity count'),
+ _('turtle blocks')])
data_to_file(self.tw.assemble_data_to_save(), file_path)
def read_file(self, file_path, run_it=True):