dock-spawn-ts
Advanced tools
Comparing version 2.401.0 to 2.402.0
@@ -352,3 +352,5 @@ import { DockWheel } from "./DockWheel.js"; | ||
if (dockedToPrevious) { | ||
ratios[ratios.length - 1] = ratios[ratios.length - 1] - ratio; | ||
for (let i = 0; i < ratios.length; i++) { | ||
ratios[i] = ratios[i] - ratios[i] * ratio; | ||
} | ||
ratios.push(ratio); | ||
@@ -355,0 +357,0 @@ } |
{ | ||
"name": "dock-spawn-ts", | ||
"version": "2.401.0", | ||
"version": "2.402.0", | ||
"description": "DockSpawn Typescript Version", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -430,3 +430,5 @@ import { DockWheel } from "./DockWheel.js"; | ||
if (dockedToPrevious) { | ||
ratios[ratios.length - 1] = ratios[ratios.length - 1] - ratio; | ||
for (let i = 0; i < ratios.length; i++) { | ||
ratios[i] = ratios[i] - ratios[i] * ratio; | ||
} | ||
ratios.push(ratio); | ||
@@ -433,0 +435,0 @@ } else { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
728367
10245