Skip to content

Commit

Permalink
Change Minimal to Maximal for max_width and max_height (bokeh#10187)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcsarmiento10 authored Jun 18, 2020
1 parent 462bfa4 commit b40a1eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bokeh/models/layouts.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,11 @@ class LayoutDOM(Model):
""")

max_width = NonNegativeInt(default=None, help="""
Minimal width of the component (in pixels) if width is adjustable.
Maximal width of the component (in pixels) if width is adjustable.
""")

max_height = NonNegativeInt(default=None, help="""
Minimal height of the component (in pixels) if height is adjustable.
Maximal height of the component (in pixels) if height is adjustable.
""")

margin = Tuple(Int, Int, Int, Int, default=(0, 0, 0, 0), help="""
Expand Down

0 comments on commit b40a1eb

Please sign in to comment.