diff --git a/Typogenic/Scripts/TypogenicText.cs b/Typogenic/Scripts/TypogenicText.cs index 0eeb25d..a1e26fd 100644 --- a/Typogenic/Scripts/TypogenicText.cs +++ b/Typogenic/Scripts/TypogenicText.cs @@ -387,11 +387,7 @@ float BlitString(string str, float cursorX, float cursorY, List vertexPoint // Only need to store glyph bounds if click support is enabled. if (EnableClickSupport) { - - // Click bounds for glyphs are based on allocated space, not rendered space. - // Otherwise we'll end up with unclickable dead zones between glyphs. - r.width = glyph.xAdvance * Size; - // And Y coordinates are just not handled the same at all. + // Y coordinates are just not handled the same at all. r.y = -cursorY - r.height - glyph.yOffset * Size;