I’m trying to get the favicon
property from a class based on WebKit.WebView
from Vala in webkit2gtk4
however the favicon
property doesn’t seem to update when loading a webpage. I have a test signal handler like this that never runs:
this.notify["favicon"].connect ((s, p) => {
GLib.print ("%s\n", p.name);
});
If I change the property to title
, it does print the property name. What am I missing?