diff --git a/gerrit/widget.go b/gerrit/widget.go index bd87fef2..00797a92 100644 --- a/gerrit/widget.go +++ b/gerrit/widget.go @@ -183,4 +183,5 @@ func (widget *Widget) showHelp() { widget.pages.AddPage("help", modal, false, true) widget.app.SetFocus(modal) + widget.app.Draw() } diff --git a/git/widget.go b/git/widget.go index 166b20fc..00ed621f 100644 --- a/git/widget.go +++ b/git/widget.go @@ -211,4 +211,5 @@ func (widget *Widget) showHelp() { widget.pages.AddPage("help", modal, false, true) widget.app.SetFocus(modal) + widget.app.Draw() } diff --git a/github/widget.go b/github/widget.go index 46e3baf5..2740c85e 100644 --- a/github/widget.go +++ b/github/widget.go @@ -136,4 +136,5 @@ func (widget *Widget) showHelp() { widget.pages.AddPage("help", modal, false, true) widget.app.SetFocus(modal) + widget.app.Draw() } diff --git a/gitlab/widget.go b/gitlab/widget.go index 081abd80..c0b34fe8 100644 --- a/gitlab/widget.go +++ b/gitlab/widget.go @@ -156,4 +156,5 @@ func (widget *Widget) showHelp() { widget.pages.AddPage("help", modal, false, true) widget.app.SetFocus(modal) + widget.app.Draw() } diff --git a/jira/widget.go b/jira/widget.go index 53e25bf3..ff75c22d 100644 --- a/jira/widget.go +++ b/jira/widget.go @@ -221,4 +221,5 @@ func (widget *Widget) showHelp() { widget.pages.AddPage("help", modal, false, true) widget.app.SetFocus(modal) + widget.app.Draw() } diff --git a/textfile/widget.go b/textfile/widget.go index d65b6192..56efc183 100644 --- a/textfile/widget.go +++ b/textfile/widget.go @@ -175,4 +175,5 @@ func (widget *Widget) showHelp() { widget.pages.AddPage("help", modal, false, true) widget.app.SetFocus(modal) + widget.app.Draw() } diff --git a/todo/widget.go b/todo/widget.go index ffb8c415..510d61e4 100644 --- a/todo/widget.go +++ b/todo/widget.go @@ -232,6 +232,7 @@ func (widget *Widget) showHelp() { widget.pages.AddPage("help", modal, false, true) widget.app.SetFocus(modal) + widget.app.Draw() } /* -------------------- Modal Form -------------------- */ diff --git a/todoist/widget.go b/todoist/widget.go index c10da595..9a35c4db 100644 --- a/todoist/widget.go +++ b/todoist/widget.go @@ -198,6 +198,7 @@ func (widget *Widget) showHelp() { widget.pages.AddPage("help", modal, false, true) widget.app.SetFocus(modal) + widget.app.Draw() } func (w *Widget) vimBindings(event *tcell.EventKey) tcell.Key {