I set use the following to make the widget uneditable. widget.props.editable = False
widget is gtk.Entry widget has an Editable interface and this should set the widget to non-editable. The entry widget does not allow any edit which I thought should also turn off the insert cursor. This is not the case Here is a simple program that show the problem import gtk window = gtk.Window() entry = gtk.Entry() entry.props.editable = False window.add(entry) window.show_all() gtk.main() Edward Catmur wrote: > On Sat, 2006-08-19 at 21:42 -0400, Mike Bernson wrote: >> I am using a gtk.Entry for something that I want to remove the insert >> cursor from. >> >> Is there any way to not have the insert cursor show up ? > > If you want to make it uneditable, use gtk.Editable.set_editable(). > > Ed > > _______________________________________________ > pygtk mailing list [email protected] > http://www.daa.com.au/mailman/listinfo/pygtk > Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/ _______________________________________________ pygtk mailing list [email protected] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
