Updated termbox-util library

This commit is contained in:
Brian Buller 2016-02-19 08:48:51 -06:00
parent 447d135216
commit b473d98f1a
1 changed files with 3 additions and 3 deletions

View File

@ -190,7 +190,7 @@ func (screen *BrowserScreen) handleInputKeyEvent(event termbox.Event) int {
screen.mode = modeBrowse
screen.inputModal.Clear()
} else {
screen.inputModal.HandleKeyPress(event)
screen.inputModal.HandleEvent(event)
if screen.inputModal.IsDone() {
b, p, _ := screen.db.getGenericFromPath(screen.currentPath)
if b != nil {
@ -235,7 +235,7 @@ func (screen *BrowserScreen) handleInputKeyEvent(event termbox.Event) int {
}
func (screen *BrowserScreen) handleDeleteKeyEvent(event termbox.Event) int {
screen.confirmModal.HandleKeyPress(event)
screen.confirmModal.HandleEvent(event)
if screen.confirmModal.IsDone() {
if screen.confirmModal.IsAccepted() {
holdNextPath := screen.db.getNextVisiblePath(screen.currentPath)
@ -279,7 +279,7 @@ func (screen *BrowserScreen) handleInsertKeyEvent(event termbox.Event) int {
screen.mode = modeBrowse
screen.inputModal.Clear()
} else {
screen.inputModal.HandleKeyPress(event)
screen.inputModal.HandleEvent(event)
if screen.inputModal.IsDone() {
newVal := screen.inputModal.GetValue()
screen.inputModal.Clear()