2020-05-18 11:41:59 -04:00
|
|
|
// +build windows
|
|
|
|
|
2020-05-25 19:26:40 -04:00
|
|
|
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
|
|
|
|
}
|