diff options
| author | Julian Hurst <ark@mansus.space> | 2022-05-17 17:26:01 +0200 |
|---|---|---|
| committer | Julian Hurst <ark@mansus.space> | 2022-05-17 17:26:01 +0200 |
| commit | dd0f6591ca1d8c320a1a3dbe2def9795373d7059 (patch) | |
| tree | ff11b6b89ad40d4c137349c5581234f62b87e086 | |
| parent | 952ab4404ffcbb43b6a95e640c6de4fb08de5c0a (diff) | |
| download | ilhare-dd0f6591ca1d8c320a1a3dbe2def9795373d7059.tar.gz | |
Remove useless (or at least it should be) frame update in print
| -rw-r--r-- | libui/widget/list/list.ha | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libui/widget/list/list.ha b/libui/widget/list/list.ha index e4b3209..6637869 100644 --- a/libui/widget/list/list.ha +++ b/libui/widget/list/list.ha @@ -112,7 +112,7 @@ export fn print(list: *widget::widget) (void | widget::error) = { //fmt::fprintln(os::stderr, rows)!; - list.frame.end = list.frame.start + list.sz.rows; + //list.frame.end = list.frame.start + list.sz.rows; let st = strio::dynamic(); strio::concat(&st, "\r")?; |
