Fix layout demo

This commit is contained in:
Marcel Schramm 2020-11-19 20:17:44 +01:00
parent 61d36aebba
commit feca3d8de3
No known key found for this signature in database
GPG Key ID: 05971054C70EEDC7
1 changed files with 8 additions and 0 deletions

View File

@ -93,6 +93,10 @@ func (c *CoreLayout) NextFocusableComponent(direction tview.FocusDirection) tvie
panic("implement me")
}
func (c *CoreLayout) OnPaste(runes []rune) {
panic("implement me")
}
func (c *CoreLayout) SetParent(parent tview.Primitive) {
//Do nothing
}
@ -182,6 +186,10 @@ func (d *demoComponent) NextFocusableComponent(direction tview.FocusDirection) t
return nil
}
func (d *demoComponent) OnPaste(runes []rune) {
panic("implement me")
}
func (d *demoComponent) SetParent(parent tview.Primitive) {
//Do nothing
}