summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLászló Németh <nemeth@numbertext.org>2013-10-22 14:03:03 +0200
committerLászló Németh <nemeth@numbertext.org>2013-10-22 14:12:55 +0200
commita888280ccbbfab1fbff3ff8e99c1cc500b9ff3db (patch)
treed734dfa06f02adbb9e6bc7e916ae8f510f4f0176
parent858d3adbd734cb2955f8255a619117c25bf15b01 (diff)
librelogo: fix black (not refreshed) invisible filling color
Change-Id: If0f37d480a745a4d245c4c6cf114374223fda610
m---------helpcontent20
-rw-r--r--librelogo/source/LibreLogo/LibreLogo.py2
2 files changed, 1 insertions, 1 deletions
diff --git a/helpcontent2 b/helpcontent2
-Subproject f81edbd66fc4d0b6cf03949bb2339c9be9ee989
+Subproject 0d8b37cd9e0b89d1136b09a81671c88fc91fee3
diff --git a/librelogo/source/LibreLogo/LibreLogo.py b/librelogo/source/LibreLogo/LibreLogo.py
index a331642b829f..5fc3aa532c01 100644
--- a/librelogo/source/LibreLogo/LibreLogo.py
+++ b/librelogo/source/LibreLogo/LibreLogo.py
@@ -48,7 +48,7 @@ __COLORS__ = ['BLACK', 0x000000], ['SILVER', 0xc0c0c0], ['GRAY', 0x808080], \
['AQUA', 0x00ffff], ['PINK', 0xffc0cb], ['TOMATO', 0xff6347], \
['ORANGE', 0xffa500], ['GOLD', 0xffd700], ['VIOLET', 0x9400d3], \
['SKYBLUE', 0x87ceeb], ['CHOCOLATE', 0xd2691e], ['BROWN', 0xa52a2a], \
- ['INVISIBLE', 0xff000000]
+ ['INVISIBLE', 0xffffffff]
__STRCONST__ = [i[0] for i in __COLORS__] + ['NONE', 'BEVEL', 'MITER', 'ROUNDED', 'SOLID', 'DASH', 'DOTTED', 'BOLD', 'ITALIC', 'UPRIGHT', 'NORMAL', "HOUR", "PT", "INCH", "MM", "CM"]
__SLEEP_SLICE_IN_MILLISECONDS__ = 500
__PT_TO_TWIP__ = 20