summaryrefslogtreecommitdiff
path: root/separator.go
blob: 2765b24bc5c026d8a93a964dd14a9f8676dc4091 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
}