summaryrefslogtreecommitdiff
path: root/tui/widget/list
diff options
context:
space:
mode:
authorJulian Hurst <julian.hurst@digdash.com>2025-03-18 17:58:53 +0100
committerJulian Hurst <julian.hurst@digdash.com>2025-03-18 17:58:53 +0100
commit0d8f330ccf366a2733bb6d5d1e51eef3579f04aa (patch)
tree22b532ea092cdb03228d00c4c9894995e78db092 /tui/widget/list
parenta2f0bd1b76503f7548b05e96d7e5c537b2d6a1b8 (diff)
downloadhare-tui-0d8f330ccf366a2733bb6d5d1e51eef3579f04aa.tar.gz
Refactor damage tracking types
Diffstat (limited to 'tui/widget/list')
-rw-r--r--tui/widget/list/list.ha2
-rw-r--r--tui/widget/list/scrolllist.ha2
2 files changed, 2 insertions, 2 deletions
diff --git a/tui/widget/list/list.ha b/tui/widget/list/list.ha
index d741a4d..23127ac 100644
--- a/tui/widget/list/list.ha
+++ b/tui/widget/list/list.ha
@@ -43,7 +43,7 @@ style: (*widget::style | void), items: str...) (list | tty::error) = {
pos = pos,
sz = sz,
style = style,
- damage = widget::all,
+ damage = widget::damageall,
...
},
items = items,
diff --git a/tui/widget/list/scrolllist.ha b/tui/widget/list/scrolllist.ha
index 959b9c0..55cee9a 100644
--- a/tui/widget/list/scrolllist.ha
+++ b/tui/widget/list/scrolllist.ha
@@ -39,7 +39,7 @@ style: (*widget::style | void), items: str...) (scrolllist | tty::error) = {
pos = pos,
sz = sz,
style = style,
- damage = widget::all,
+ damage = widget::damageall,
...
},
items = items,