From ed1ae3fb271b3d8d05310fa357d2fa987d5b95cf Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 30 Apr 2001 18:37:06 +0000 Subject: [PATCH] Bug fix from Mike Fletcher git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9945 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/wxPython/lib/filebrowsebutton.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wxPython/wxPython/lib/filebrowsebutton.py b/wxPython/wxPython/lib/filebrowsebutton.py index 395655700c..5bf576cd91 100644 --- a/wxPython/wxPython/lib/filebrowsebutton.py +++ b/wxPython/wxPython/lib/filebrowsebutton.py @@ -13,7 +13,7 @@ #---------------------------------------------------------------------- from wxPython.wx import * -import os +import os, types #---------------------------------------------------------------------- @@ -109,6 +109,8 @@ class FileBrowseButton(wxPanel): self.SetAutoLayout(true) self.SetSizer( outsidebox ) self.Layout() + if type( size ) == types.TupleType: + size = apply( wxSize, size) if size.width != -1 or size.height != -1: self.SetSize(size) -- 2.47.2