chore: update krilla

This commit is contained in:
Tobias Schmitz 2025-07-03 14:12:15 +02:00
parent f324accff9
commit 7892a8c726
No known key found for this signature in database

View File

@ -318,7 +318,7 @@ fn table_cell_id(table_id: TableId, x: u32, y: u32) -> TagId {
bytes[0..4].copy_from_slice(&table_id.0.to_ne_bytes()); bytes[0..4].copy_from_slice(&table_id.0.to_ne_bytes());
bytes[4..8].copy_from_slice(&x.to_ne_bytes()); bytes[4..8].copy_from_slice(&x.to_ne_bytes());
bytes[8..12].copy_from_slice(&y.to_ne_bytes()); bytes[8..12].copy_from_slice(&y.to_ne_bytes());
TagId::from_bytes(&bytes) TagId::from_slice(&bytes)
} }
fn table_header_scope(scope: TableHeaderScope) -> krilla::tagging::TableHeaderScope { fn table_header_scope(scope: TableHeaderScope) -> krilla::tagging::TableHeaderScope {