Skip to content

Commit

Permalink
clang-format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PaintYourDragon committed Oct 19, 2020
1 parent f876b13 commit 1459233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Adafruit_GFX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1467,7 +1467,7 @@ void Adafruit_GFX::getTextBounds(const char *str, int16_t x, int16_t y,
*x1 = minx; // Update x1 to least X coord,
*w = maxx - minx + 1; // And w to bound rect width
}
if (maxy >= miny) { // Same for height
if (maxy >= miny) { // Same for height
*y1 = miny;
*h = maxy - miny + 1;
}
Expand Down

0 comments on commit 1459233

Please sign in to comment.