diff options
author | Sven Gothel <[email protected]> | 2023-03-28 02:41:30 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-03-28 02:41:30 +0200 |
commit | 114cc7be0f43a6cf2540caa0ed47948d7cade54f (patch) | |
tree | 81d3299240789be44c4f82eb1c345e72931e9bd1 /src/graphui | |
parent | f7125f6bb2db418064a170ae42466e13b8f51f70 (diff) |
Graph Font.GlyphVisitor*: Pass 'char symbol' to visitor, passing full text-processing information
Diffstat (limited to 'src/graphui')
-rw-r--r-- | src/graphui/classes/com/jogamp/graph/ui/gl/shapes/Label.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphui/classes/com/jogamp/graph/ui/gl/shapes/Label.java b/src/graphui/classes/com/jogamp/graph/ui/gl/shapes/Label.java index 17ea3ad4e..5d45ffb9c 100644 --- a/src/graphui/classes/com/jogamp/graph/ui/gl/shapes/Label.java +++ b/src/graphui/classes/com/jogamp/graph/ui/gl/shapes/Label.java @@ -162,7 +162,7 @@ public class Label extends Shape { private final Font.GlyphVisitor glyphVisitor = new Font.GlyphVisitor() { @Override - public void visit(final Glyph glyph, final AffineTransform t) { + public void visit(final char symbol, final Glyph glyph, final AffineTransform t) { if( glyph.isWhiteSpace() ) { return; } |