diff options
author | bptato <nincsnevem662@gmail.com> | 2025-01-03 22:55:59 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2025-01-03 23:46:13 +0100 |
commit | e548f28c298abf5122d3f3af117b39f08e916d88 (patch) | |
tree | 989135c2b826349dab0b5a510ecad2fef8c2ed55 /src/local | |
parent | 8fb8f3547e122359d0315884c1ff46476f6e4ef3 (diff) | |
download | chawan-e548f28c298abf5122d3f3af117b39f08e916d88.tar.gz |
env, buffer: restyle on getComputedStyle
style/layout invalidation is a mess :( Fixes acid3 test00
Diffstat (limited to 'src/local')
-rw-r--r-- | src/local/container.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/local/container.nim b/src/local/container.nim index da9bf436..5a6699a8 100644 --- a/src/local/container.nim +++ b/src/local/container.nim @@ -1589,7 +1589,7 @@ proc readSuccess*(container: Container; s: string; fd: cint = -1) = proc reshape(container: Container): EmptyPromise {.jsfunc.} = if container.iface == nil: return - return container.iface.forceRender().then(proc(): EmptyPromise = + return container.iface.forceReshape().then(proc(): EmptyPromise = return container.requestLines() ) |