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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user