diff --git a/ui/help-modal.go b/ui/help-modal.go index 41d644e..98e73fc 100644 --- a/ui/help-modal.go +++ b/ui/help-modal.go @@ -3,7 +3,6 @@ package ui import ( "maunium.net/go/tcell" - "maunium.net/go/gomuks/debug" "maunium.net/go/mauview" ) @@ -87,16 +86,6 @@ func NewHelpModal(parent *MainView) *HelpModal { return hm } -func (hm *HelpModal) Focus() { - debug.Print("focus") - hm.FocusableComponent.Focus() -} - -func (hm *HelpModal) Blur() { - debug.Print("blur") - hm.FocusableComponent.Blur() -} - func (hm *HelpModal) OnKeyEvent(event mauview.KeyEvent) bool { if event.Key() == tcell.KeyEscape || event.Rune() == 'q' { hm.parent.HideModal()