From 04717274b315cc796b4616b59b4bc25e94aeb9fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Br=C3=B6tzmann?= Date: Wed, 24 Apr 2019 16:07:24 +0200 Subject: [PATCH] GroupchatControl: Switch encrypted symbol to symbolic --- gajim/groupchat_control.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gajim/groupchat_control.py b/gajim/groupchat_control.py index 17bd92336..3c025c1c9 100644 --- a/gajim/groupchat_control.py +++ b/gajim/groupchat_control.py @@ -1044,11 +1044,11 @@ class GroupchatControl(ChatControlBase): if authenticated: authenticated_string = _('and authenticated') self.lock_image.set_from_icon_name( - 'security-high', Gtk.IconSize.MENU) + 'security-high-symbolic', Gtk.IconSize.MENU) else: authenticated_string = _('and NOT authenticated') self.lock_image.set_from_icon_name( - 'security-low', Gtk.IconSize.MENU) + 'security-low-symbolic', Gtk.IconSize.MENU) tooltip = _('%(type)s encryption is active %(authenticated)s.') % { 'type': enc_type, 'authenticated': authenticated_string}