Re: [pygtk] gtktreeviewcolumn.c critical error?

2002-11-08 Thread B C
Try adding active=1 to second column. column = gtk.TreeViewColumn(Display,cell2, active=1) -bc __ Do you Yahoo!? U2 on LAUNCH - Exclusive greatest hits videos http://launch.yahoo.com/u2 ___ pygtk

[pygtk] gtktreeviewcolumn.c critical error?

2002-11-07 Thread Tanya Brethour
I am writing a simple gui that has as TreeStore in it. I keep getting the follow error multiple times. It happens a few times when the gui first starts up and when I mouse over the columns. (expertfe.py:25899): Gtk-CRITICAL **: file gtktreeviewcolumn.c: line 2246

Re: [pygtk] gtktreeviewcolumn.c critical error?

2002-11-07 Thread James Henstridge
Tanya Brethour wrote: I am writing a simple gui that has as TreeStore in it. I keep getting the follow error multiple times. It happens a few times when the gui first starts up and when I mouse over the columns. (expertfe.py:25899): Gtk-CRITICAL **: file gtktreeviewcolumn.c: line 2246

Re: [pygtk] gtktreeviewcolumn.c critical error?

2002-11-07 Thread Tanya Brethour
My guess is that this would be the problem. Packing the same cell renderer into the column twice. Nope.. I still get the same error after making the modification you suggested. Any more ideas? Here is my code again: class metricsTreeView(gtk.TreeView): def __init__(self):

Re: [pygtk] gtktreeviewcolumn.c critical error?

2002-11-07 Thread Tanya Brethour
I figured out my problem. Sorry to trouble people.. it was a coding error in my main file. -Tanya On Thu, 7 Nov 2002, Tanya Brethour wrote: My guess is that this would be the problem. Packing the same cell renderer into the column twice. Nope.. I still get the same error after