Hello:
I was running into a font error - google led me to some threads where
lib/agw/customtreectrl.py, specifically,
*family* had a value 74. I saw some threads where you had said that it was a
wx.Font bug and that it should return FONTFAMILY_DEFAULT instead.. which is
why i addede the else condition below..
if family == wx.FONTFAMILY_UNKNOWN:
print "inside family condition"
family = wx.FONTFAMILY_SWISS
else: #Else condition added by KB
print "inside else family condition"
family = wx.FONTFAMILY_DEFAULT #KB
return family
After adding the else condition in customtreectrl.py in wx/lib/agw, the font
error does not come up but another error
typeerror in method new_Timer expected argument of type wxEvtHandler.. I
dont know if I am landing on the right error after resolving the previous
one or is it just random?
If you feel I have landed on error 2 validly from error 1, that i had.. pls
let me know if i m on the right track.
···
--
View this message in context: http://wxpython-users.1045709.n5.nabble.com/Font-error-leading-to-a-timer-error-tp5717453.html
Sent from the wxPython-users mailing list archive at Nabble.com.