Merge pull request #91 from monsta/patch-1
Escape ampersand in app names and comments
This commit is contained in:
commit
edebc8c1f2
@ -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('&', '&')) # don't remove our pango
|
||||
else:
|
||||
label.set_text(text)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user