mirror of
https://github.com/morgan9e/warehouse
synced 2026-04-14 00:04:08 +09:00
Fix names and descriptions not rendering properly
This commit is contained in:
@@ -31,8 +31,8 @@ class AppRow(Adw.ActionRow):
|
||||
self.long_press_gesture = Gtk.GestureLongPress()
|
||||
|
||||
# Apply
|
||||
GLib.idle_add(lambda *_: self.set_title(package.info["name"]))
|
||||
GLib.idle_add(lambda *_: self.set_subtitle(package.info["id"]))
|
||||
GLib.idle_add(lambda *_: self.set_title(GLib.markup_escape_text(package.info["name"])))
|
||||
GLib.idle_add(lambda *_: self.set_subtitle(GLib.markup_escape_text(package.info["id"])))
|
||||
GLib.idle_add(lambda *_: self.idle_stuff())
|
||||
self.add_controller(self.rclick_gesture)
|
||||
self.add_controller(self.long_press_gesture)
|
||||
|
||||
Reference in New Issue
Block a user