On Tue, Aug 31, 2010 at 09:05:19AM -0500, Jamie Adams wrote:
> Worked on two machines without issue.  I did encounter a problem in one 
> instance where I had a wrong version of wxpython, IIRC.  But on a clean 
> install it worked perfectly.


There is a simple fix for that but it needs a patch to main.py in each
project.

First ensure that you have the python-wxversion package install and then
add the following to any main.py before loadUI("wx") is called.

---------------->
try:
    import wxversion
    wxversion.select("2.8")
except ImportError:
    pass

<----------------


This will ensure dabo always uses wx2.8 even if both 2.8 band 2.6 are
installed. (which is possible on debina/unbuntu)

TTFN
-- 
Roger.                          Home| http://www.sandman.uklinux.net/
Master of Peng Shui.      (Ancient oriental art of Penguin Arranging)
Work|Independent Sys Consultant | http://www.computer-surgery.co.uk/
 New key Fpr: 0F2F E1DF 4CD2 5E7B EF9F  B173 4CFA F143 ADBE 6B00 
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
Searchable Archives: http://leafe.com/archives/search/dabo-users
This message: 
http://leafe.com/archives/byMID/[email protected]

Reply via email to