From 50e1a1f55053794ad543e86ebeda5a93acb6f611 Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Sun, 27 Sep 2020 08:03:53 -0400 Subject: [PATCH] Window.set_min_size docstring warning --- PySimpleGUI.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PySimpleGUI.py b/PySimpleGUI.py index ba2fa6a1..c7d68dfe 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -8578,7 +8578,7 @@ class Window: 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 :type size: Tuple[int, int)]