Window.set_min_size docstring warning

This commit is contained in:
PySimpleGUI 2020-09-27 08:03:53 -04:00
parent 9d2af2240a
commit 50e1a1f550
1 changed files with 1 additions and 1 deletions

View File

@ -8578,7 +8578,7 @@ class Window:
def set_min_size(self, size): def set_min_size(self, size):
""" """
Changes the minimum size of the window Changes the minimum size of the window. Note Window must be read or finalized first.
:param size: (width, height) of the desired window size :param size: (width, height) of the desired window size
:type size: Tuple[int, int)] :type size: Tuple[int, int)]