diff options
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 28fa89120..8e4d85902 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -1545,7 +1545,7 @@ bool Editor::WrapLines(WrapScope ws) { } } else if (ws == WrapScope::wsIdle) { // Try to keep time taken by wrapping reasonable so interaction remains smooth. - const double secondsAllowed = 0.01; + constexpr double secondsAllowed = 0.01; const Sci::Line linesInAllowedTime = std::clamp<Sci::Line>( static_cast<Sci::Line>(secondsAllowed / durationWrapOneLine.Duration()), LinesOnScreen() + 50, 0x10000); |