From ecd9876481fa7162b2a1d28b50ebc9a596e98ddb Mon Sep 17 00:00:00 2001 From: Dimitri John Ledkov Date: Wed, 9 Oct 2019 17:17:02 +0100 Subject: [PATCH] Align non-clickable Help title --- subiquity/ui/views/help.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/subiquity/ui/views/help.py b/subiquity/ui/views/help.py index a1c3bfc4..7c7a55f3 100644 --- a/subiquity/ui/views/help.py +++ b/subiquity/ui/views/help.py @@ -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)