diff options
author | Neil <nyamatongwe@gmail.com> | 2021-09-21 09:41:13 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-09-21 09:41:13 +1000 |
commit | 826b435368f2b23d419ccd7f97a70b01c969e163 (patch) | |
tree | 0225785727530639a05283c98272f52ab0856333 | |
parent | 28382215fcc5fdb615018853429eef4d3117a7bf (diff) | |
download | scintilla-mirror-826b435368f2b23d419ccd7f97a70b01c969e163.tar.gz |
Remove line end space.
-rw-r--r-- | src/ViewStyle.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ViewStyle.cxx b/src/ViewStyle.cxx index 5d10dbb83..84d165997 100644 --- a/src/ViewStyle.cxx +++ b/src/ViewStyle.cxx @@ -356,7 +356,7 @@ void ViewStyle::Refresh(Surface &surface, int tabInChars) { maxAscent = 1; maxDescent = 1; FindMaxAscentDescent(); - // Ensure reasonable values: lines less than 1 pixel high will not work + // Ensure reasonable values: lines less than 1 pixel high will not work maxAscent = std::max(1.0, maxAscent + extraAscent); maxDescent = std::max(0.0, maxDescent + extraDescent); lineHeight = static_cast<int>(std::lround(maxAscent + maxDescent)); |