diff options
| author | Jeff Carr <[email protected]> | 2025-03-04 14:33:39 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-03-04 14:33:39 -0600 |
| commit | a88937c508d2921aa5e6fa335450ee8f05e7fbf9 (patch) | |
| tree | f3129c304e6509c8ec7fceef66238f97f337ddd0 /eventMouseClick.go | |
| parent | 96eac58cf59d2c735cd2b88e4458fff12422e121 (diff) | |
working on delete table
Diffstat (limited to 'eventMouseClick.go')
| -rw-r--r-- | eventMouseClick.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/eventMouseClick.go b/eventMouseClick.go index ed3eafe..0dfa7e4 100644 --- a/eventMouseClick.go +++ b/eventMouseClick.go @@ -4,6 +4,7 @@ package main import ( + "github.com/awesome-gocui/gocui" "go.wit.com/log" "go.wit.com/widget" ) @@ -115,6 +116,12 @@ func doMouseClick(w int, h int) { } } +// todo: use this? +func ctrlDown(g *gocui.Gui, v *gocui.View) error { + log.Info("todo: clicked with ctrlDown") + return nil +} + func doMouseDoubleClick(w int, h int) { me.mouse.double = false // log.Printf("actually a double click (%d,%d)", w, h) |
