refresh method
void
refresh()
Re-reads the owning strip and republishes.
This is what makes a resize update dependent UI: the extent changed but no scroll happened, so a scroll listener alone would never fire.
Implementation
void refresh() {
if (_disposed) return;
_electOwner();
_publishFromOwner();
}