Align non-clickable Help title

This commit is contained in:
Dimitri John Ledkov 2019-10-09 17:17:02 +01:00 committed by Michael Hudson-Doyle
parent ba00c3bd62
commit ecd9876481
1 changed files with 2 additions and 1 deletions

View File

@ -190,7 +190,8 @@ class HelpMenu(WidgetWrap):
on_press=self._show_local(local_title, local_doc))
buttons.add(local)
else:
local = Text(('info_minor header', _("Help on this screen")))
local = Text(
('info_minor header', " " + _("Help on this screen") + " "))
for button in buttons:
connect_signal(button.base_widget, 'click', self._close)