Compare commits
No commits in common. "master" and "v0.21.13" have entirely different histories.
4
Makefile
4
Makefile
|
@ -1,7 +1,7 @@
|
|||
VERSION = $(shell git describe --tags)
|
||||
BUILDTIME = $(shell date +%Y.%m.%d)
|
||||
|
||||
all: clean goimports plugin
|
||||
all: goimports plugin
|
||||
#ldd pixelgl.so
|
||||
|
||||
deps:
|
||||
|
@ -16,7 +16,7 @@ install:
|
|||
cd ~/go/lib && ln -f -s pixelgl-${VERSION}.so pixelgl.so
|
||||
|
||||
clean:
|
||||
rm -f pixelgl pixelgl.so
|
||||
rm -f pixelgl pixelg..so
|
||||
|
||||
full-plugin:
|
||||
GO111MODULE=off go build -v -x -buildmode=plugin -o pixelgl.so
|
||||
|
|
|
@ -59,7 +59,7 @@ func newaction(n *tree.Node, atype widget.ActionType) {
|
|||
// w.disableColor()
|
||||
case widget.Delete:
|
||||
log.Info("newaction() DeleteNode()")
|
||||
// n.DeleteNode()
|
||||
n.DeleteNode()
|
||||
case widget.ToolkitClose:
|
||||
log.Info("newaction() toolkit closed. are the channels cleand up?")
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue