aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2024-06-11 15:12:43 +1000
committerNeil <nyamatongwe@gmail.com>2024-06-11 15:12:43 +1000
commiteee34c2c5053450ec48aea8a9cbff4d5dd140b55 (patch)
treeb8f26dacb03aa59d21af327ea71e8ffca458f0be /src
parent09f1eb12713c43bde56596d963997ee977bca025 (diff)
downloadscintilla-mirror-eee34c2c5053450ec48aea8a9cbff4d5dd140b55.tar.gz
Feature [feature-requests:#1517]. Increase maximum zoom set interactively to +60
points.
Diffstat (limited to 'src')
-rw-r--r--src/Editor.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index 867f50fa7..1bcaca2ef 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -3953,7 +3953,7 @@ int Editor::KeyCommand(Message iMessage) {
AddChar('\f');
break;
case Message::ZoomIn:
- if (vs.zoomLevel < 20) {
+ if (vs.zoomLevel < 60) {
vs.zoomLevel++;
InvalidateStyleRedraw();
NotifyZoom();