From 20ecfc902cc5a654a079e9ba22c41179aca221bb Mon Sep 17 00:00:00 2001 From: Mica White Date: Sat, 11 Jul 2026 16:44:23 -0400 Subject: fixes --- src/script/wasm.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/script/wasm.rs b/src/script/wasm.rs index 5a9332e..25632fa 100644 --- a/src/script/wasm.rs +++ b/src/script/wasm.rs @@ -111,19 +111,19 @@ fn add_cell( if attributes & 2048 != 0 { attribute_set.set(Attribute::Hidden); } - if attributes & 2048 != 0 { + if attributes & 4096 != 0 { attribute_set.set(Attribute::CrossedOut); } - if attributes & 4096 != 0 { + if attributes & 8192 != 0 { attribute_set.set(Attribute::Fraktur); } - if attributes & 8192 != 0 { + if attributes & 16384 != 0 { attribute_set.set(Attribute::Framed); } - if attributes & 16384 != 0 { + if attributes & 32768 != 0 { attribute_set.set(Attribute::Encircled); } - if attributes & 32768 != 0 { + if attributes & 65536 != 0 { attribute_set.set(Attribute::OverLined); } -- cgit v1.2.3