Tim Evans
Wed, 27 Jan 2010 14:31:15 -0800
On 2010-01-27 4:19, Mallikarjun(ಮಲ್ಲಿಕಾರ್ಜುನ್) wrote: > Dear friends, > I am a newbie to python, pygtk, glade. I created GUI using Glade > Interface Designer and added a text entry but not able to reduce width > of it. the real problem is if I add 7 text entries in a row, going out > of screen as my resolution is quiet less. > > So can someone please help me reduce width of text entry using Glade > Interface Designer + Pygtk
You should set the "width-chars" property to something small. Where
this is set will depend on the version of Glade. You can also set in
manually with this line of code:
my_entry.props.width_chars = 5
--
Tim Evans
Applied Research Associates NZ
http://www.aranz.com/
_______________________________________________
pygtk mailing list pygtk@daa.com.au
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://faq.pygtk.org/