Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
TFT_eSPI
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
TFT_eSPI
Commits
1f7ce88d
Unverified
Commit
1f7ce88d
authored
May 03, 2022
by
Bodmer
Committed by
GitHub
May 03, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix #1812
Result of "fillheight = gFont.maxAscent - gdY[gNum];" can be negative.
parent
24b0e888
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Extensions/Smooth_font.cpp
Extensions/Smooth_font.cpp
+1
-1
No files found.
Extensions/Smooth_font.cpp
View file @
1f7ce88d
...
...
@@ -431,7 +431,7 @@ void TFT_eSPI::drawGlyph(uint16_t code)
startWrite
();
// Avoid slow ESP32 transaction overhead for every pixel
int16_t
fillwidth
=
0
;
u
int16_t
fillheight
=
0
;
int16_t
fillheight
=
0
;
// Fill area above glyph
if
(
_fillbg
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment