|
package gui
|
|
|
|
import (
|
|
"go.wit.com/gui/widget"
|
|
)
|
|
|
|
func (parent *Node) NewSeparator(progname string) *Node {
|
|
newNode := parent.newNode(progname, widget.Separator)
|
|
newNode.progname = progname
|
|
|
|
// inform the toolkits
|
|
sendAction(newNode, widget.Add)
|
|
return newNode
|
|
}
|