X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a72f4631fe5ab7ebeefdacf8ec9c826ea962133f..02161c7c81e12685d04a1f73e714ca52ad858f6c:/wxPython/src/_sizers.i?ds=sidebyside diff --git a/wxPython/src/_sizers.i b/wxPython/src/_sizers.i index f0eac7a127..d85ecefb7a 100644 --- a/wxPython/src/_sizers.i +++ b/wxPython/src/_sizers.i @@ -836,6 +836,8 @@ subsizer. Returns True if the item was found.", ""); return self->Show(info.sizer, show, recursive); else if ( info.gotPos ) return self->Show(info.pos, show); + else + return false; } DocAStr(IsShown, @@ -860,7 +862,7 @@ the item.", ""); } %pythoncode { - def Hide(self, item, recursive=false): + def Hide(self, item, recursive=False): """ A convenience method for Show(item, False, recursive). """