Fixed textinput padding function

This commit is contained in:
Alexander Taylor 2014-07-27 22:48:59 +01:00
parent 079704eaa9
commit a72da6ebf7
1 changed files with 1 additions and 1 deletions

View File

@ -2561,7 +2561,7 @@ class TextInput(Widget):
def _get_min_height(self):
return (len(self._lines) * (self.line_height + self.line_spacing)
+ self.padding[0] + self.padding[2])
+ self.padding[1] + self.padding[3])
minimum_height = AliasProperty(_get_min_height, None,
bind=('_lines', 'line_spacing', 'padding',