From f44cbe02c17df1f02ad49c63cd784fec0ea02d85 Mon Sep 17 00:00:00 2001 From: fiaxh Date: Sat, 14 May 2022 14:45:59 +0200 Subject: Improve Gtk4 port --- plugins/openpgp/src/contact_details_provider.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/openpgp/src') diff --git a/plugins/openpgp/src/contact_details_provider.vala b/plugins/openpgp/src/contact_details_provider.vala index db085a4d..9ec84c21 100644 --- a/plugins/openpgp/src/contact_details_provider.vala +++ b/plugins/openpgp/src/contact_details_provider.vala @@ -17,7 +17,7 @@ public class ContactDetailsProvider : Plugins.ContactDetailsProvider, Object { if (conversation.type_ == Conversation.Type.CHAT && type == WidgetType.GTK4) { string? key_id = stream_interactor.get_module(Manager.IDENTITY).get_key_id(conversation.account, conversation.counterpart); if (key_id != null) { - Label label = new Label("") { use_markup=true, justify=Justification.RIGHT, selectable=true, visible=true }; + Label label = new Label("") { use_markup=true, justify=Justification.RIGHT, selectable=true }; Gee.List? keys = null; try { keys = GPGHelper.get_keylist(key_id); -- cgit v1.2.3-54-g00ecf