I have used gtk.Notebook() in my script, In notebook tab I have given 2 text fields username and password but problem is that the entry field does not behave as password field, it is showing character. so I want if i type password it should be confidential jsut like as (*).
This is code which i have used
entry = gtk.Entry()
entry.set_invisible_char("*")
entry.set_size_request(100, 75)
entry.show ()
label = gtk.Label("Add page")
notebook.insert_page(entry, label, 2)
Now anyone tell me how to do that.
Thanks in advance...