1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Can dismiss help modal from the keyboard

This commit is contained in:
Chris Cummer
2018-05-03 16:08:52 -07:00
parent 8d0a0b81fa
commit 72f9543e75
2 changed files with 28 additions and 3 deletions

View File

@@ -218,7 +218,13 @@ func (widget *Widget) persist() {
}
func (widget *Widget) showHelp() {
modal := wtf.NewBillboardModal(helpText)
closeFunc := func() {
widget.pages.RemovePage("help")
widget.app.SetFocus(widget.View)
widget.display()
}
modal := wtf.NewBillboardModal(helpText, closeFunc)
widget.pages.AddPage("help", modal, false, true)
widget.app.SetFocus(modal)