update the ChangeLog so andar doesn't beat me up
fix displaying tracker urls with & in the url in the gtkui
This commit is contained in:
parent
826f1a2be9
commit
831b81529c
|
@ -105,9 +105,9 @@ class DetailsTab(Tab):
|
|||
|
||||
if widget[0].get_text() != txt:
|
||||
if widget[2][0] == 'comment' and is_url(txt):
|
||||
widget[0].set_markup('<a href="%s">%s</a>' % (txt, txt))
|
||||
widget[0].set_markup('<a href="%s">%s</a>' % (txt, txt.replace('&', '&')))
|
||||
else:
|
||||
widget[0].set_markup(txt)
|
||||
widget[0].set_markup(txt.replace('&', '&'))
|
||||
|
||||
def clear(self):
|
||||
for widget in self.label_widgets:
|
||||
|
|
Loading…
Reference in New Issue