Benjamin Summerton

Results 97 comments of Benjamin Summerton
trafficstars

Hi, this is happening for me as well right now too.

Okay, I tested doing it based off of `t0.nim`, the glade file now shows up. Would you like an example of the new "app style" or the older one. Is...

That `getWindow()`, `getButton()` does seem like a good solution. Alternatively, could it be possible that each class can take a constructor that could convert a `GObject*` pointer to the type....

Hey, my old Nim code above doesn't work, but this here does: ```nim import gintro/[gtk, glib, gobject, gio] proc appActivate (app: Application) = let builder = newBuilder() discard builder.addFromFile("DiceRoll.glade") let...

I'm a little confused. Do you still need to manually specify the signal -> handler connections in Nim?

I'm looking to build an OpenGL application. I'm not looking to use it to do drawing for components. I've seen a few other OpenGL packages though already on NuGet though,...

Unfortunately this is a private project. I do have a public one up and I was able to reproduce this when making the window's width smaller. The project is here:...

~~I'd like the confirm that this is still happening in v4.01 and v5.0.0 on Linux. I have a similar pattern:~~ ``` await player.setSource(DeviceFileSource(musicPath)); final Duration? dur = await player.getDuration(); ```...

Hi. I want to confirm that this is happening as well (v4.0.1) . Both on iOS and macOS.

My work around is to call `pause()` right after calling `setPlaybackRate()`.