From 2171192934a7e5507882ac8ad6299348955e2812 Mon Sep 17 00:00:00 2001 From: Travis McLane Date: Wed, 23 Aug 2023 14:09:44 -0500 Subject: [PATCH] [v3 linux] noop: remove println --- v3/pkg/application/linux_cgo.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/v3/pkg/application/linux_cgo.go b/v3/pkg/application/linux_cgo.go index ba3191e69..d83ee3b3c 100644 --- a/v3/pkg/application/linux_cgo.go +++ b/v3/pkg/application/linux_cgo.go @@ -800,7 +800,7 @@ func onButtonEvent(_ *C.GtkWidget, event *C.GdkEventButton, data unsafe.Pointer) case GdkButtonPress: lw.startDrag() //uint(event.button), int(event.x_root), int(event.y_root)) case Gdk2ButtonPress: - fmt.Printf("%d - button %d - double-clicked\n", windowId, int(event.button)) + // do we need something here? case GdkButtonRelease: lw.endDrag(uint(event.button), int(event.x_root), int(event.y_root)) } @@ -853,7 +853,6 @@ func gtkBool(input bool) C.gboolean { // dialog related func setWindowIcon(window pointer, icon []byte) { - fmt.Println("setWindowIcon", len(icon)) loader := C.gdk_pixbuf_loader_new() if loader == nil { return