Hi,

Please ignore my previous request for a short bigtext example.  After a 
good night's sleep I stumbled across the magic incantation.  The last 
detail that allowed it to work is to give the width='clip' argument to 
the enclosing Padding object.  Here is an example:

import urwid as u

bt = u.BigText(" HelloWorld  v2.0 ",  u.font.HalfBlock5x4Font())
bt = u.Padding(bt, 'left', width='clip')
bt = u.Filler(bt, 'bottom')

loop = u.MainLoop(bt)
loop.run()

-- 
-Mike


  -------------------------------------------------------------
  Mike Miller             Earth, Sol, Orion Arm, Milky Way, VSC

_______________________________________________
Urwid mailing list
[email protected]
http://lists.excess.org/mailman/listinfo/urwid

Reply via email to