mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
SimpleShapedText: Silence conversion warning
This commit is contained in:
parent
45a19830b5
commit
5a02f5231d
1 changed files with 1 additions and 1 deletions
|
|
@ -272,7 +272,7 @@ struct ShapedGlyph
|
|||
bool isPlaceholderForLigature() const { return distanceFromLigature > 0; }
|
||||
|
||||
int8_t getDistanceFromLigature() const { return distanceFromLigature; }
|
||||
int8_t getNumTrailingLigaturePlaceholders() const { return -distanceFromLigature; }
|
||||
int8_t getNumTrailingLigaturePlaceholders() const { return (int8_t) -distanceFromLigature; }
|
||||
|
||||
Point<float> advance;
|
||||
Point<float> offset;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue