mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
14 lines
457 B
Go
14 lines
457 B
Go
package weather
|
|
|
|
import "github.com/gdamore/tcell"
|
|
|
|
func (widget *Widget) initializeKeyboardControls() {
|
|
widget.InitializeCommonControls(widget.Refresh)
|
|
|
|
widget.SetKeyboardChar("h", widget.PrevSource, "Select previous city")
|
|
widget.SetKeyboardChar("l", widget.NextSource, "Select next city")
|
|
|
|
widget.SetKeyboardKey(tcell.KeyLeft, widget.PrevSource, "Select previous city")
|
|
widget.SetKeyboardKey(tcell.KeyRight, widget.NextSource, "Select next city")
|
|
}
|