diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/script/wasm.rs | 10 |
1 files changed, 5 insertions, 5 deletions
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); } |
