increase the scale value to resolve font rendering issue

This commit is contained in:
yggverse 2025-08-29 07:08:35 +03:00
parent e03a74c8b8
commit 6731aa62fa
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ impl Tag {
text_tag: TextTag::builder()
.family("monospace") // @TODO
.left_margin(28)
.scale(0.8)
.scale(0.81) // * the rounded `0.8` value crops text for some reason @TODO
.wrap_mode(WrapMode::None)
.build(),
}

View file

@ -21,7 +21,7 @@ impl Tag {
text_tag: TextTag::builder()
.family("monospace") // @TODO
.left_margin(28)
.scale(0.8)
.scale(0.81) // * the rounded `0.8` value crops text for some reason @TODO
.wrap_mode(WrapMode::None)
.build(),
}