Skip to content

Commit

Permalink
Merge pull request #34 from makermelissa/master
Browse files Browse the repository at this point in the history
Thanks for the fix!
  • Loading branch information
caternuson authored Feb 8, 2019
2 parents 2f26e6d + 9c3c38b commit 1eb9d08
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion adafruit_ht16k33/segments.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,10 @@ def _push(self, char):
if char in ':;':
self._put(char)
else:
super()._push(char)
if char != '.' or self._get_buffer(self.POSITIONS[3]) & 0b10000000:
self.scroll()
self._put(' ', 3)
self._put(char, 3)

def _put(self, char, index=0):
"""Put a character at the specified place."""
Expand Down

0 comments on commit 1eb9d08

Please sign in to comment.