Kim Friesen wrote:

> You wouldn't happen to also know why only my Windows are being
> created and not the widgets inside of them ?
> 
> I have created a dialog in Glade with 2 buttons on it and am using
> the example from pygtk/examples/glade called glade.py.

That imports the old pyglade module which, IIRC, doesn't actually use
libglade.  Try something like this:

from gtk import *
import libglade

widgets = libglade.GladeXML('<name of .glade file>')
# connect signals, etc...
mainloop()
To unsubscribe: echo "unsubscribe" | mail [EMAIL PROTECTED]

Reply via email to