From eca4ad76722440a79789191daac029c65aadcfcb Mon Sep 17 00:00:00 2001 From: Vasiliy Doylov Date: Sun, 22 Jun 2025 01:35:40 +0300 Subject: [PATCH] WIP Signed-off-by: Vasiliy Doylov --- src/logic/singbox.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logic/singbox.vala b/src/logic/singbox.vala index faca409..7beea72 100644 --- a/src/logic/singbox.vala +++ b/src/logic/singbox.vala @@ -27,7 +27,7 @@ class Singularity.SingBox : Object { construct { outbound_selection = new Gtk.SingleSelection (outbound_store); outbound_selection.notify["selected"].connect (() => { - message ("Selected %s", ((Outbound.Outbound) outbound_selection.selected_item).name); + message ("Selected %s", ((Outbound.Outbound) outbound_selection.selected_item).type_name); set_up (); }); }