Very useful. Thanks a lot
--
http://mail.python.org/mailman/listinfo/python-list
>> I want to give some emphasis to a Label from gtk, without breaking
>> gnome theme... What would be the best solution?
Maybe:
mylabel.set_markup("""My Label""")
? For more details, check out the PyGTK docs for the Label widget:
http://www.moeraki.com/pygtkreference/pygtk2ref
ravenheart wrote:
> What would be the best solution? How to do it? I have found how to
> change colors and underscoring but nothing else.
I don't know about the best, but I would use:
label = gtk.Label()
# Pango markup should be on by default, if not use this line
#label.set_use_markup(True)
labe
ravenheart wrote:
> I want to give some emphasis to a Label from gtk, without breaking gnome
> theme (i.e. not changing colors, etc)
> I think bolding it would be a good option (could be also underscoring
> but don't like it at all).
> What would be the best solution? How to do it? I have found ho
I want to give some emphasis to a Label from gtk, without breaking gnome
theme (i.e. not changing colors, etc)
I think bolding it would be a good option (could be also underscoring
but don't like it at all).
What would be the best solution? How to do it? I have found how to
change colors and und