mirror of
https://github.com/taigrr/bubbletea.git
synced 2026-04-02 02:59:09 -07:00
10 lines
195 B
Go
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
|
|
}
|