update TODO.md

This commit is contained in:
Simon Gardling 2022-02-24 00:38:10 -05:00
parent 7481da3d16
commit 28ddc4e900
2 changed files with 1 additions and 2 deletions

View File

@ -3,5 +3,6 @@
- Proper support for dynamic chart display size. - Proper support for dynamic chart display size.
- Don't re-render plot on mouse movement - Don't re-render plot on mouse movement
- Fix interval display - Fix interval display
- Fix crashes in parsing strings (`TextDecoder.decode: Decoding failed.`)
2. Multiple functions in one graph. 2. Multiple functions in one graph.
3. Non `y=` functions. 3. Non `y=` functions.

View File

@ -64,8 +64,6 @@ impl ChartManager {
let func_str: String = add_asterisks(func_str_new); let func_str: String = add_asterisks(func_str_new);
let update_func: bool = !self.function.str_compare(func_str); let update_func: bool = !self.function.str_compare(func_str);
update_func | (min_x != self.min_x) | (max_x != self.max_x) update_func | (min_x != self.min_x) | (max_x != self.max_x)
} }