Files
bubbletea/commands_windows.go
2020-05-18 11:44:58 -04:00

10 lines
195 B
Go

// +build windows
package boba
// 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
}