diff options
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index bccddf160..2dd329fa3 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -3858,6 +3858,14 @@ LRESULT Editor::WndProc(UINT iMessage, WPARAM wParam, LPARAM lParam) { Redraw(); break; + case SCI_SETZOOM: + vs.zoomLevel = wParam; + InvalidateStyleRedraw(); + break; + + case SCI_GETZOOM: + return vs.zoomLevel; + case SCI_GETEDGECOLUMN: return theEdge; |