Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/turtleart.py
diff options
context:
space:
mode:
Diffstat (limited to 'turtleart.py')
-rwxr-xr-xturtleart.py17
1 files changed, 16 insertions, 1 deletions
diff --git a/turtleart.py b/turtleart.py
index 10820d3..9aeaed7 100755
--- a/turtleart.py
+++ b/turtleart.py
@@ -45,7 +45,7 @@ sys.argv[1:] = [] # Execution of import gst cannot see '--help' or '-h'
from gettext import gettext as _
-from TurtleArt.taconstants import OVERLAY_LAYER
+from TurtleArt.taconstants import OVERLAY_LAYER, DEFAULT_TURTLE_COLORS
from TurtleArt.tautils import data_to_string, data_from_string, get_save_name
from TurtleArt.tawindow import TurtleArtWindow
from TurtleArt.taexporthtml import save_html
@@ -545,5 +545,20 @@ class TurtleMain():
""" Callback for destroy event. """
gtk.main_quit()
+ def nick_changed(self, nick):
+ pass
+
+ def color_changed(self, colors):
+ """ Reskin turtle with collaboration colors """
+ turtle = self.tw.turtles.get_turtle(self.tw.default_turtle_name)
+ try:
+ turtle.colors = colors.split(',')
+ except:
+ turtle.colors = DEFAULT_TURTLE_COLORS
+ turtle.custom_shapes = True # Force regeneration of shapes
+ turtle.reset_shapes()
+ turtle.show()
+
+
if __name__ == "__main__":
TurtleMain()