From 4ea835defc0a3fca806a5b6818c7f3cbf8c7ce69 Mon Sep 17 00:00:00 2001 From: gottadiveintopython Date: Fri, 27 Sep 2019 16:13:59 +0900 Subject: [PATCH] fix GridLayout doc --- kivy/uix/gridlayout.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kivy/uix/gridlayout.py b/kivy/uix/gridlayout.py index 223ed723a..05fee80cd 100644 --- a/kivy/uix/gridlayout.py +++ b/kivy/uix/gridlayout.py @@ -150,7 +150,7 @@ class GridLayout(Layout): longer set this to a negative value. :attr:`cols` is a :class:`~kivy.properties.NumericProperty` and defaults to - 0. + None. ''' rows = BoundedNumericProperty(None, min=0, allownone=True) @@ -161,7 +161,7 @@ class GridLayout(Layout): longer set this to a negative value. :attr:`rows` is a :class:`~kivy.properties.NumericProperty` and defaults to - 0. + None. ''' col_default_width = NumericProperty(0)