diff options
author | bptato <nincsnevem662@gmail.com> | 2024-09-01 01:03:50 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-09-01 01:46:38 +0200 |
commit | 55cfd29e961488a8c1ed9eb7801d237d27bc86c7 (patch) | |
tree | c74569e15ca72d777eadcfd19a0203cbb76c3e3f /src/css/cssvalues.nim | |
parent | e9466c4c436f964b53034e28356aa3f5c957a068 (diff) | |
download | chawan-55cfd29e961488a8c1ed9eb7801d237d27bc86c7.tar.gz |
canvas: move to separate CGI script
* stream: and passFd is now client-based, and accessible for buffers * Bitmap's width & height is now int, not uint64 * no more non-network Bitmap special case in the pager for canvas I just shoehorned it into the static image model, so it still doesn't render changes after page load. But at least now it doesn't crash the browser.
Diffstat (limited to 'src/css/cssvalues.nim')
-rw-r--r-- | src/css/cssvalues.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/css/cssvalues.nim b/src/css/cssvalues.nim index f0b3cbc8..f8a50723 100644 --- a/src/css/cssvalues.nim +++ b/src/css/cssvalues.nim @@ -318,7 +318,7 @@ type CSSContent* = object t*: CSSContentType s*: string - bmp*: Bitmap + bmp*: NetworkBitmap CSSQuotes* = object auto*: bool |