mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Replace Arc<Box<TextRun>> with Arc<TextRun>
This commit is contained in:
parent
afe3d7e747
commit
8a09f738d4
5 changed files with 10 additions and 10 deletions
|
@ -824,7 +824,7 @@ pub struct TextDisplayItem {
|
|||
|
||||
/// The text run.
|
||||
#[ignore_heap_size_of = "Because it is non-owning"]
|
||||
pub text_run: Arc<Box<TextRun>>,
|
||||
pub text_run: Arc<TextRun>,
|
||||
|
||||
/// The range of text within the text run.
|
||||
pub range: Range<CharIndex>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue