On Tue, 11 Jun 2019 20:03:48 +0200, Mike Wey wrote:

On 11-06-2019 09:59, Alex X wrote:

APaned.addOnMoveHandle((GtkScrollType, Paned p) { });

Is never called. Is there something I have to do to make this work?

According to the GTK documentation it is only called when the separator
is moved with a key binding.

This should probably do what you want:

APaned.addOnNotify((ParamSpec, ObjectG obj) {  }, "position");

You can cast obj to Paned if you need it.

Ok, I red that in the docs but got confused or forgot... or didn't realize addOnNotify was the key(although I was using addOnNotify in the first place ;).

Thanks again.