Skip to content

Commit

Permalink
Merge pull request #57 from p0ns/master
Browse files Browse the repository at this point in the history
Fixes missing `screen` on call to `self.draw`
  • Loading branch information
wong2 authored Dec 5, 2021
2 parents 7228040 + 3bf69f0 commit ffc65ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pick/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def draw(self, screen):

def run_loop(self, screen):
while True:
self.draw()
self.draw(screen)
c = screen.getch()
if c in KEYS_UP:
self.move_up()
Expand Down

0 comments on commit ffc65ad

Please sign in to comment.