You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug #586 introduced Pango support to more places. In some places, the text needs to be (intelligently) escaped, as it is now causing blank strings and GTK warnings.
To Reproduce
Steps to reproduce the behavior:
Add the music module with default settings
Play a song with an & in its title (or where the artist has an &)
Observe GTK warning
Expected behavior
The & is correctly escaped. Markup continues to work as expected.
Additional context
Glib offers a markup_escape_text which will correctly escape Pango markup. This cannot be used on the full string as this then...escapes the markup.
The text was updated successfully, but these errors were encountered:
Describe the bug
#586 introduced Pango support to more places. In some places, the text needs to be (intelligently) escaped, as it is now causing blank strings and GTK warnings.
To Reproduce
Steps to reproduce the behavior:
&
in its title (or where the artist has an&
)Expected behavior
The
&
is correctly escaped. Markup continues to work as expected.Additional context
Glib offers a
markup_escape_text
which will correctly escape Pango markup. This cannot be used on the full string as this then...escapes the markup.The text was updated successfully, but these errors were encountered: