-
A lot of the code have `runtime.SetFinalizer()` invocations that look like this:
```
runtime.SetFinalizer(p, func(_ interface{}) { obj.Unref() })
```
However, since `obj` is captured in the clos…
-
Hello, I'm working on a small project using gotk3 and want to be able to set the window's override_redirect flag. Currently the only thing that does set it is `gtk.WindowNew(gtk.WINDOW_POPUP)` but it …
-
I had this error when building on a Debian/testing with go 1.22:
``` bash
# github.com/gotk3/gotk3/gdk
../../../../go/pkg/mod/github.com/gotk3/gotk3@v0.6.4/gdk/gdk_since_3_22.go:140:180: undefine…
-
I think that I checked all of the other tickets here, the wiki and all of the examples, and I wasn't able to figure out how to delete the child elements of a `gtk.Listbox`.
Right now my workaround …
-
**Describe the bug**
An image constructed from a golang `[]byte` array seems to have a chance at becoming corrupted.
**To Reproduce**
Steps to reproduce the behavior:
Fill a `[]byte` slice with …
-
I'm running a TreeView foreach loop, at first it was crashing after about an hour, now that I have improved the code it crashes after about 10 minutes with:
runtime: bad pointer in frame github.co…
-
For larger packages the doc generated "Index" section is most unhelpful.
See for example, the [Go FLTK bindings](https://pkg.go.dev/github.com/pwiecz/go-fltk).
There are two separate ways this cou…
-
Hi,
I've got an error using webloop with go-webkit2.
It happens, if I send a request to the renderer 2 times with a small pause.
```
panic: runtime error: invalid memory address or nil pointer deref…
-
Some Gtk functions take string parameters that can be null, such as the one below.
```
GtkWidget * gtk_frame_new (const gchar *label);
```
>Creates a new GtkFrame, with optional label label . If…
-
**Describe the bug**
I copied the same code and commands from the readme the first example code, and then started building it, the building doesn't end. The cpu usage is at its peek
**To Reproduce…