Received via automatic error reporter logging here till resolved
* Thu Jan 19 08:25:29 2012 * Traceback (most recent call last): File %22/Users/corbinlinks/Library/Application Support/Editra/plugins/PyStudio-0.4-py2.6.egg/PyStudio/Debugger/ExpressionsShelfWindow.py%22, line 160, in OnExecute File %22/Users/corbinlinks/Library/Application Support/Editra/plugins/PyStudio-0.4-py2.6.egg/PyStudio/Debugger/ExpressionDialog.py%22, line 33, in init AttributeError: ExpressionDialog object has no attribute _sizer
Comment #1
Posted on Mar 26, 2012 by Helpful MonkeyCody the ECBaseDlg code has changed. It used to be: self._sizer = wx.BoxSizer(wx.VERTICAL)
# Setup
self.SetSizer(self._sizer)
And then the ExpressionDialog uses self._sizer.
Now the ECBaseDlg says: self.SetSizer(wx.BoxSizer(wx.VERTICAL))
How can I get the sizer object?
Comment #2
Posted on Mar 26, 2012 by Happy MonkeyHi,
Don't remember when I changed that but must have missed this usage.
All Window objects store their sizer object you can easily get to it by either:
self.GetSizer() # Returns the sizer object
OR
self.Sizer # Sizer object property
Comment #3
Posted on Mar 26, 2012 by Helpful MonkeyI have replaced all self._sizer with self.Sizer which should fix this bug.
Comment #4
Posted on Mar 30, 2012 by Helpful Monkey(No comment was entered for this change.)
Status: Fixed
Labels:
Type-Defect
Priority-Medium
Plugin-PyStudio