Re: [pygtk] Setting the Colors in a ZVTerm

2000-10-24 Thread ChiDeok Hwang
Try the attached patch. You can also make workaround in python code like for i in range(len(colors)): colors[i] = (colors[i],) in your commented block. On Mon, Oct 23, 2000 at 12:29:11PM -0500, Eric Gillespie, Jr. wrote: I'm trying to set the colors of a ZVTerm to white on black. I

[pygtk] Re: Patch for easier whole-app cursor setting

2000-10-24 Thread Stephan R.A. Deibel
Last week I wrote: I've attached a patch that makes it much easier to set the cursor (e.g., to a watch / wait cursor) on an entire pygtk app, as you might do before intensive processing that will lock up the entire gtk mainloop(). Turns out there are some refcount/deletion order problems