e2ee api: Add space before encryption name in status bar

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2019-06-06 14:19:03 +02:00
parent d56d442253
commit 47909c4dcf

View file

@ -98,7 +98,7 @@ class E2EEPlugin(BasePlugin):
return ""
if jid in self._enabled_tabs:
return self.encryption_short_name
return " " + self.encryption_short_name
return ""
def _toggle_tab(self, _input: str) -> None: