ui/app,ui/key: move TextInputState from key to internal package

Clients have no need for the TextInputState type.

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2019-07-21 13:12:24 +02:00
parent b46bad09bd
commit 9e0e4af8c6
10 changed files with 41 additions and 54 deletions
+3 -4
View File
@@ -317,11 +317,10 @@ func (w *window) setAnimating(anim bool) {
w.animating = anim
}
func (w *window) setTextInput(s key.TextInputState) {
switch s {
case key.TextInputOpen:
func (w *window) showTextInput(show bool) {
if show {
w.focus()
case key.TextInputClose:
} else {
w.blur()
}
}