Skip to content

Commit

Permalink
feat: show pset
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiphoseer committed Jan 12, 2025
1 parent cc1ecf6 commit eedb92f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions crates/sdo-web/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -576,6 +576,16 @@ impl Handle {
h2.append_child(&small)?;

self.output.append_child(&h2)?;

match font_kind {
FontKind::Editor => {
let _eset = self.parse_eset(&_data)?;
}
FontKind::Printer(_) => {
let pset = self.parse_pset(&_data)?;
self._show_ps24(&pset)?;
}
}
}
Ok(())
}
Expand Down

0 comments on commit eedb92f

Please sign in to comment.