Menu

#2 Immediate Segmentation Fault under Linux

1.6_betas
open
nobody
None
7
2007-02-23
2007-02-23
No

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 »")

Discussion


Log in to post a comment.