Skip to content

Commit 0d5cff6

Browse files
committed
Fixed issue where cursor disappears on new files, in some terminals
1 parent b6d41fb commit 0d5cff6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

durdraw/durdraw_movie.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def init_list_colorMap(width, height):
66
""" Builds a color map consisting of a list of lists """
77
#return [[list([1,0]) * width] * height]
88
colorMap = []
9-
dummyColor = [1, 0]
9+
dummyColor = [8, 0]
1010
for h in range(0, height):
1111
colorMap.append([])
1212
for w in range(0, width):

0 commit comments

Comments
 (0)