aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/EditView.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2017-04-12 17:37:25 +1000
committerNeil <nyamatongwe@gmail.com>2017-04-12 17:37:25 +1000
commitc3c62cbb60d7f8b98a6b5752efad37f9ba70aad9 (patch)
tree8a0e38e0f120758914e4cdd2f1ec31428427d6af /src/EditView.cxx
parentdb5e774317693f915567714d6bc393dddef1b004 (diff)
downloadscintilla-mirror-c3c62cbb60d7f8b98a6b5752efad37f9ba70aad9.tar.gz
For speed, store height of capital letters in FontMeasurements so not
recalculated for every character blob.
Diffstat (limited to 'src/EditView.cxx')
-rw-r--r--src/EditView.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/EditView.cxx b/src/EditView.cxx
index d40ac51d8..50555b0a1 100644
--- a/src/EditView.cxx
+++ b/src/EditView.cxx
@@ -818,8 +818,7 @@ static void DrawTextBlob(Surface *surface, const ViewStyle &vsDraw, PRectangle r
surface->FillRectangle(rcSegment, textBack);
}
FontAlias ctrlCharsFont = vsDraw.styles[STYLE_CONTROLCHAR].font;
- int normalCharHeight = static_cast<int>(surface->Ascent(ctrlCharsFont) -
- surface->InternalLeading(ctrlCharsFont));
+ const int normalCharHeight = static_cast<int>(ceil(vsDraw.styles[STYLE_CONTROLCHAR].capitalHeight));
PRectangle rcCChar = rcSegment;
rcCChar.left = rcCChar.left + 1;
rcCChar.top = rcSegment.top + vsDraw.maxAscent - normalCharHeight;