GObject.Object.prototype.thaw_notify

function thaw_notify(): void {
    // Gjs wrapper for g_object_thaw_notify()
}
  

Reverts the effect of a previous call to GObject.Object.prototype.freeze_notify. The freeze count is decreased on object and when it reaches zero, queued "notify" signals are emitted.

Duplicate notifications for each property are squashed so that at most one GObject.Object::notify signal is emitted for each property, in the reverse order in which they have been queued.

It is an error to call this function when the freeze count is zero.