Please reference docs @ dockview.dev.
๐ Miscsโ
-
Bug: fix duplicate group added when adding group with absolute position #596
-
Bug: Adjust onDidLayoutChange behaviour #597
onDidLayoutChange
is an aggregation of events that constitute a layout change. Previously these events were aggregated and the events were then fired once through asetTimeout(..., 0)
approach. This has been altered to fire on aqueueMicrotask
event and will only subscribe to events that happen after the event is subscribed to, previously you may have recieved events yet to fire on thesetTimeout
function but within the same event-loop cycle which was a bug.