Skip to content

Commit

Permalink
Merge pull request #560 from xnox/alignment
Browse files Browse the repository at this point in the history
Align non-clickable Help title
  • Loading branch information
mwhudson authored Oct 13, 2019
2 parents ba00c3b + ecd9876 commit bdfb40a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion subiquity/ui/views/help.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@ def __init__(self, parent):
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)

Expand Down

0 comments on commit bdfb40a

Please sign in to comment.