Skip to content

Commit

Permalink
Fixes #195 - Enforce a minimum width on progress bars.
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Jul 22, 2017
1 parent ab5e76b commit b796d07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cocoa/toga_cocoa/widgets/progressbar.py
Expand Up @@ -42,5 +42,5 @@ def _set_max(self, value):
def rehint(self):
self.style.hint(
height=self._impl.fittingSize().height,
width=self._impl.fittingSize().width
min_width=100
)

0 comments on commit b796d07

Please sign in to comment.