guipb/widget.common.go

11 lines
179 B
Go

// Copyright 2025 WIT.COM Inc Licensed GPL 3.0
package guipb
func (x *Widget) IsButton() bool {
if _, ok := x.GetType().(*Widget_Button); ok {
return true
}
return false
}