GroupchatControl: Switch encrypted symbol to symbolic

This commit is contained in:
Daniel Brötzmann 2019-04-24 16:07:24 +02:00
parent 245cecf1a9
commit 04717274b3
1 changed files with 2 additions and 2 deletions

View File

@ -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}