diff options
author | Neil <nyamatongwe@gmail.com> | 2020-06-10 13:00:05 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2020-06-10 13:00:05 +1000 |
commit | 0b9c12bf9cc211c30a40b13d7ba72dbba5328369 (patch) | |
tree | fd85a6039819158a325b5b9f2a881434d6a9fdbf /src/Editor.cxx | |
parent | 6516d81f0ad2574e49732c0def87d19c5a23ddeb (diff) | |
download | scintilla-mirror-0b9c12bf9cc211c30a40b13d7ba72dbba5328369.tar.gz |
Feature [feature-requests:1355]. Round instead of truncating for SCI_TEXTWIDTH.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index b7636adb2..234a2aaa6 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -1823,11 +1823,11 @@ Sci::Position Editor::FormatRange(bool draw, const Sci_RangeToFormat *pfr) { return view.FormatRange(draw, pfr, surface, surfaceMeasure, *this, vs); } -int Editor::TextWidth(int style, const char *text) { +long Editor::TextWidth(uptr_t style, const char *text) { RefreshStyleData(); AutoSurface surface(this); if (surface) { - return static_cast<int>(surface->WidthText(vs.styles[style].font, text)); + return std::lround(surface->WidthText(vs.styles[style].font, text)); } else { return 1; } @@ -6757,7 +6757,7 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { case SCI_TEXTWIDTH: PLATFORM_ASSERT(wParam < vs.styles.size()); PLATFORM_ASSERT(lParam); - return TextWidth(static_cast<int>(wParam), CharPtrFromSPtr(lParam)); + return TextWidth(wParam, CharPtrFromSPtr(lParam)); case SCI_TEXTHEIGHT: RefreshStyleData(); |