From eee34c2c5053450ec48aea8a9cbff4d5dd140b55 Mon Sep 17 00:00:00 2001
From: Neil Scintilla incorporates a "zoom factor" that lets you make all the text in the document
larger or smaller in steps of one point. The displayed point size never goes below 2, whatever
- zoom factor you set. You can set zoom factors in the range -10 to +20 points.
SCI_ZOOMIN
SCI_ZOOMOUT
SCI_SETZOOM(int zoomInPoints)
@@ -8256,13 +8256,13 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){
SCI_ZOOMIN
SCI_ZOOMOUT
SCI_ZOOMIN increases the zoom factor by one point if the current zoom factor is
- less than 20 points. SCI_ZOOMOUT decreases the zoom factor by one point if the
+ less than 60 points. SCI_ZOOMOUT decreases the zoom factor by one point if the
current zoom factor is greater than -10 points.
SCI_SETZOOM(int zoomInPoints)
SCI_GETZOOM → int
These messages let you set and get the zoom factor directly. There is no limit set on the
- factors you can set, so limiting yourself to -10 to +20 to match the incremental zoom functions
+ factors you can set, so limiting yourself to -10 to +60 to match the incremental zoom functions
is a good idea.
Long lines
--
cgit v1.2.3