lookingGlass: Do not escape markup in button subclass constructor

Buttons no longer take Pango markup by default, there's no longer
need to escape text here.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3149>
This commit is contained in:
Carlos Garnacho 2024-01-29 16:41:03 +01:00 committed by Florian Müllner
parent 569f88537a
commit e889bff1c6

View File

@ -288,7 +288,6 @@ class ObjLink extends St.Button {
text = title;
else
text = objectToString(o);
text = GLib.markup_escape_text(text, -1);
super._init({
reactive: true,