Skip to content

Commit

Permalink
Merge 16ff9f8 into cbfb444
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinbarylka committed Mar 18, 2018
2 parents cbfb444 + 16ff9f8 commit 55505d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tdl/__init__.py
Expand Up @@ -996,7 +996,7 @@ def draw_frame(self, x, y, width, height, string, fg=Ellipsis, bg=Ellipsis):
def get_char(self, x, y):
# inherit docstring
x, y = self._normalizePoint(x, y)
return self.console.get_char(self._translate(x, y))
return self.console.get_char(*self._translate(x, y))

def __repr__(self):
return "<Window(X=%i Y=%i Width=%i Height=%i)>" % (self.x, self.y,
Expand Down

0 comments on commit 55505d4

Please sign in to comment.