From ce4b86ddd06e7f7c50e92894a484e9f11676cf59 Mon Sep 17 00:00:00 2001 From: David Rose Date: Thu, 4 Oct 2001 03:03:50 +0000 Subject: [PATCH] possible fix to initial frame size problems --- direct/src/gui/DirectGuiBase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/gui/DirectGuiBase.py b/direct/src/gui/DirectGuiBase.py index 89591570cd..6d0e80aecf 100644 --- a/direct/src/gui/DirectGuiBase.py +++ b/direct/src/gui/DirectGuiBase.py @@ -766,7 +766,7 @@ class DirectGuiWidget(DirectGuiBase, NodePath): # Now allow changes to take effect self.updateFrameStyle() if not self['frameSize']: - self.setFrameSize() + self.resetFrameSize() def enableEdit(self): self.bind(B2PRESS, self.editStart)