From c10bae300c5c1b50a7177183bce29c5970bc32a0 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sun, 11 Oct 2020 14:20:41 +0200 Subject: [PATCH] Reset __gtype_name__ to match template --- dropship/ui_templates.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dropship/ui_templates.py b/dropship/ui_templates.py index 2d309d9..277f416 100644 --- a/dropship/ui_templates.py +++ b/dropship/ui_templates.py @@ -11,7 +11,8 @@ CWD = Path(__file__).absolute().parent @Gtk.Template.from_file(f"{CWD}/ui/pendingTransferRow.ui") class PendingTransferRow(Gtk.ListBoxRow): - __gtype_name__ = "PendingTransferRow" + # Note(decentral1se): must match ui/pendingTransferRow.ui name + __gtype_name__ = "pendingTransferRow" fileNameLabel = Gtk.Template.Child() fileNameMetadata = Gtk.Template.Child()