diff options
author | bptato <nincsnevem662@gmail.com> | 2022-07-27 22:28:14 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2022-07-27 23:26:24 +0200 |
commit | dd9cb39c7d6adfa02feb181dd629bb9a93b7250c (patch) | |
tree | 4d4f840847a20577729f12a879c95c7a29a859b7 /src/io/cell.nim | |
parent | cc92092fe8053f77d0c63e57c3990272b36be4ef (diff) | |
download | chawan-dd9cb39c7d6adfa02feb181dd629bb9a93b7250c.tar.gz |
Fix StyledNode invalidation & others
Diffstat (limited to 'src/io/cell.nim')
-rw-r--r-- | src/io/cell.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/io/cell.nim b/src/io/cell.nim index 4d808dda..80ada720 100644 --- a/src/io/cell.nim +++ b/src/io/cell.nim @@ -4,7 +4,7 @@ import strutils import sugar import unicode -import html/dom +import css/stylednode import layout/box import types/color import utils/twtstr @@ -26,7 +26,7 @@ type Cell* = object of RootObj format*: Format - node*: Node + node*: StyledNode FormatCell* = object of Cell pos*: int |