GLib-CRITICAL **: Source ID XXX was not found when attempting to remove it
This isn’t a bug in your code, and it’s not a crash either. It’s actually just a warning that g_source_remove() was called to disconnect a certain event handler that was already disconnected, in this case, in code that is part of gtk. The warning itself was introduced in glib 2.39, in this commit, and seems … Read more