Compare commits

...

2 Commits

Author SHA1 Message Date
Jeff Carr 3d46cf352a remove for now 2025-03-05 03:47:40 -06:00
Jeff Carr 113154e858 fix typos 2025-02-21 10:21:32 -06:00
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
VERSION = $(shell git describe --tags) VERSION = $(shell git describe --tags)
BUILDTIME = $(shell date +%Y.%m.%d) BUILDTIME = $(shell date +%Y.%m.%d)
all: goimports plugin all: clean goimports plugin
#ldd pixelgl.so #ldd pixelgl.so
deps: deps:
@ -16,7 +16,7 @@ install:
cd ~/go/lib && ln -f -s pixelgl-${VERSION}.so pixelgl.so cd ~/go/lib && ln -f -s pixelgl-${VERSION}.so pixelgl.so
clean: clean:
rm -f pixelgl pixelg..so rm -f pixelgl pixelgl.so
full-plugin: full-plugin:
GO111MODULE=off go build -v -x -buildmode=plugin -o pixelgl.so GO111MODULE=off go build -v -x -buildmode=plugin -o pixelgl.so

View File

@ -59,7 +59,7 @@ func newaction(n *tree.Node, atype widget.ActionType) {
// w.disableColor() // w.disableColor()
case widget.Delete: case widget.Delete:
log.Info("newaction() DeleteNode()") log.Info("newaction() DeleteNode()")
n.DeleteNode() // n.DeleteNode()
case widget.ToolkitClose: case widget.ToolkitClose:
log.Info("newaction() toolkit closed. are the channels cleand up?") log.Info("newaction() toolkit closed. are the channels cleand up?")
return return