diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-07-25 14:10:15 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-07-25 14:10:15 +0200 |
| commit | 0f13518aa4be5ea5a10127b959bb88e3a0df892e (patch) | |
| tree | d54850708d131217f78fee5da4a236a0a96fc781 /src/widgets/sheetview.rs | |
| parent | c6d35dbd049a77800aac53f419729aff75b3ca5c (diff) | |
only multithread if overhead is small enough
Diffstat (limited to 'src/widgets/sheetview.rs')
| -rw-r--r-- | src/widgets/sheetview.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/sheetview.rs b/src/widgets/sheetview.rs index f814cf2..2584c96 100644 --- a/src/widgets/sheetview.rs +++ b/src/widgets/sheetview.rs @@ -11,7 +11,7 @@ use ratatui::{ use crate::sheet::{ register::{Register, SheetId}, - EvalFunction, Sheet, + eval::EvalFunction, Sheet, }; use super::luaeditor::LuaEditor; |