We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While trying the workaround for Issue #3 , I subclassed Line and implemented the start of an override for get_stylesheet().
def get_stylesheet( self ): ss = super( PerfLine, self ).get_stylesheet() ...
Unfortunately, this code in Line.py makes any further usage crash:
def calculate_left_margin(self): super(self.__class__, self).calculate_left_margin() label_left = len(self.fields[0]) / 2 * self.font_size * 0.6 self.border_left = max(label_left, self.border_left)
b/c self.class is now my subclass so this method ends up calling itself until it aborts via stack recursion hell.
Seems to work fine if I change it to "super(Line, self).calculate_left_margin()".
The text was updated successfully, but these errors were encountered:
Merge pull request #18 from sndgeek/master
cc91643
Proposed fix for Issue #17
Update changelog. Ref #17.
175c3be
Fix changelog to reference proper ticket. Ref #17.
5e1a91b
Fixed in 3.4.4.
Sorry, something went wrong.
No branches or pull requests
While trying the workaround for Issue #3 , I subclassed Line and implemented the start of an override for get_stylesheet().
Unfortunately, this code in Line.py makes any further usage crash:
b/c self.class is now my subclass so this method ends up calling itself until it aborts via stack recursion hell.
Seems to work fine if I change it to "super(Line, self).calculate_left_margin()".
The text was updated successfully, but these errors were encountered: