Pull in Remote Changes

This commit is contained in:
Brian Buller 2015-05-04 19:34:48 -05:00
parent 0fc0c58c6d
commit 06420fe4e6
1 changed files with 5 additions and 1 deletions

View File

@ -82,8 +82,12 @@ func (i *InputModal) SetDone(b bool) *InputModal {
func (i *InputModal) IsDone() bool {
return i.is_done
}
func (i *InputModal) SetValue(s string) *InputModal {
i.input.SetValue(s)
return i
}
func (i *InputModal) GetValue() string {
return i.value
return i.input.GetValue()
}
func (i *InputModal) Clear() *InputModal {
i.title = ""