bubbletea/commands_windows.go

10 lines
194 B
Go
Raw Normal View History

2020-05-18 11:41:59 -04:00
// +build windows
package tea
2020-05-18 11:41:59 -04:00
// OnResize is not supported on Windows at this time as Windows does not
// support the SIGWINCH signal.
func OnResize(newMsgFunc func() Msg) Cmd {
return nil
}