Immediate Segmentation Fault under Linux
Status: Beta
Brought to you by:
tad0
The program immediately seg faults when run on a linux system. This has been traced after extensive effort to having a text control be a parent to a static text widget. This design made good sense under windows but as GTK does not support it, the design will need to be altered.
here is the offending line of code in 1.6 b3
Gui.py line 253
self.editLabelsCtrl = wx.StaticText(self.viewLabels, -1, "Edit »")
if you would like to run to program change the line to:
self.editLabelsCtrl = wx.StaticText(self, -1, "Edit »")