Escape ampersand in app names and comments

This commit is contained in:
monsta 2014-05-22 17:44:38 +04:00
parent dabe8d4eb5
commit 08c61dfc76

View File

@ -176,7 +176,7 @@ class easyButton( Gtk.Button ):
def addLabel( self, text, styles = None ):
label = Gtk.Label()
if "<b>" in text or "<span" in text:
label.set_markup(text) # don't remove our pango
label.set_markup(text.replace('&', '&amp;')) # don't remove our pango
else:
label.set_text(text)