diff options
| author | Ray <[email protected]> | 2019-05-14 00:07:44 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2019-05-14 00:07:44 +0200 |
| commit | 6f7b721d81c46718ae522e4a05e16c93711faefb (patch) | |
| tree | 8644e950fbcd9908c5ce5d220026910b4e22ba51 /src/text.c | |
| parent | 6804c2189e07a661ef975146c288619589c90731 (diff) | |
| parent | 00431396b0b516b2296c17e5e5b5fd9e72bacfec (diff) | |
| download | raylib-6f7b721d81c46718ae522e4a05e16c93711faefb.tar.gz raylib-6f7b721d81c46718ae522e4a05e16c93711faefb.zip | |
Merge branch 'master' of https://github.com/raysan5/raylib
Diffstat (limited to 'src/text.c')
| -rw-r--r-- | src/text.c | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -899,7 +899,7 @@ void DrawTextRecEx(Font font, const char *text, Rectangle rec, float fontSize, f int state = wordWrap? MEASURE_STATE : DRAW_STATE; int startLine = -1; // Index where to begin drawing (where a line begins) int endLine = -1; // Index where to stop drawing (where a line ends) - + int lastk = -1; // Holds last value of the character position for (int i = 0, k = 0; i < length; i++, k++) { int glyphWidth = 0; @@ -954,6 +954,11 @@ void DrawTextRecEx(Font font, const char *text, Rectangle rec, float fontSize, f textOffsetX = 0; i = startLine; glyphWidth = 0; + + // Save character position when we switch states + int tmp = lastk; + lastk = k - 1; + k = tmp; } } @@ -981,7 +986,7 @@ void DrawTextRecEx(Font font, const char *text, Rectangle rec, float fontSize, f bool isGlyphSelected = false; if ((selectStart >= 0) && (k >= selectStart) && (k < (selectStart + selectLength))) { - Rectangle strec = {rec.x + textOffsetX-1, rec.y + textOffsetY, glyphWidth, (font.baseSize + font.baseSize/4)*scaleFactor }; + Rectangle strec = {rec.x + textOffsetX-1, rec.y + textOffsetY, glyphWidth, font.baseSize*scaleFactor }; DrawRectangleRec(strec, selectBack); isGlyphSelected = true; } @@ -1005,6 +1010,7 @@ void DrawTextRecEx(Font font, const char *text, Rectangle rec, float fontSize, f startLine = endLine; endLine = -1; glyphWidth = 0; + k = lastk; state = !state; } } |
