Ticket #1557 (closed defect: fixed)
Moving tiles in TurtleArt let a trace on the screen
| Reported by: | sayamindu | Owned by: | walter |
|---|---|---|---|
| Priority: | Normal | Milestone: | Unspecified by Release Team |
| Component: | Turtleart | Version: | Unspecified |
| Severity: | Minor | Keywords: | |
| Cc: | Distribution/OS: | OLPC | |
| Bug Status: | New |
Description
From http://dev.laptop.org/ticket/9678:
In TurtleArt, moving tiles with number (forward, left, ...) let a trace on the screen. The trace disappear when the screen is refreshed. It seems that the font size used for number is too large.
It seems that changing the default font-size helps.
diff --git a/tasprites.py b/tasprites.py index 7065b16..56da3a1 100644 --- a/tasprites.py +++ b/tasprites.py @@ -157,7 +157,7 @@ def draw_label(spr, label, myscale, center_flag, truncate_flag): # used for most things def draw_label1(spr, label): - draw_label(spr, label, 7, True, True) + draw_label(spr, label, 6, True, True) # used for status blocks def draw_label2(spr, label):
Change History
Note: See
TracTickets for help on using
tickets.
