summaryrefslogtreecommitdiff
path: root/src/script
diff options
context:
space:
mode:
authorMica White <botahamec@outlook.com>2026-07-11 16:44:23 -0400
committerMica White <botahamec@outlook.com>2026-07-11 16:44:23 -0400
commit20ecfc902cc5a654a079e9ba22c41179aca221bb (patch)
treed9f7c5b906ad9b681fae91cf34c1cee3b97a5473 /src/script
parent7aa6566796e1632ae36277648c162fc77af7052b (diff)
Diffstat (limited to 'src/script')
-rw-r--r--src/script/wasm.rs10
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);
}