Re: suse linux 10 and wx.listctrl display issues

2006-03-13 Thread ianaré
Well that definitly works, thanks. Is there any way to keep the themes though? -- http://mail.python.org/mailman/listinfo/python-list

Re: suse linux 10 and wx.listctrl display issues

2006-03-10 Thread Eric Davis
Put this in your main function before you instantiate your wx.App. if platform.system() == 'Linux': try: del os.environ['GTK_RC_FILES'] del os.environ['GTK2_RC_FILES'] except ValueError: pass This is a problem with Su

Re: suse linux 10 and wx.listctrl display issues

2006-03-07 Thread ianaré
hum finally did find some SuSE specific RPM's through yast by setting the media directory to mirros.kernel.org. Cool. But still the same thing happens... -- http://mail.python.org/mailman/listinfo/python-list

suse linux 10 and wx.listctrl display issues

2006-03-07 Thread ianaré
hey, Having some problems getting wxpython apps to look right on SuSE 10.0 and KDE 3.4. There are no RPMs that i could find so I built my own from source. First time using 'default' settings - GTK 2.x and unicode: rpmbuild -tb --define 'pyver 2.4' --define 'port gtk2' \ --define 'unicode 1' wxPyt