aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/ScintillaCocoa.mm
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2025-06-01 08:38:14 +1000
committerNeil <nyamatongwe@gmail.com>2025-06-01 08:38:14 +1000
commita180e477ec3efd9d35a4cf32b63ab7354a03371f (patch)
tree17ed696a646a5acf4305a0795ae56690a04e08b5 /cocoa/ScintillaCocoa.mm
parent922a70ac051ac097632bc26e56c23fffb65aa43d (diff)
downloadscintilla-mirror-a180e477ec3efd9d35a4cf32b63ab7354a03371f.tar.gz
Add SCI_SCROLLVERTICAL API.
Diffstat (limited to 'cocoa/ScintillaCocoa.mm')
-rw-r--r--cocoa/ScintillaCocoa.mm1
1 files changed, 1 insertions, 0 deletions
diff --git a/cocoa/ScintillaCocoa.mm b/cocoa/ScintillaCocoa.mm
index b1e242cc9..8a9af4058 100644
--- a/cocoa/ScintillaCocoa.mm
+++ b/cocoa/ScintillaCocoa.mm
@@ -1951,6 +1951,7 @@ void ScintillaCocoa::ScrollText(Sci::Line) {
* Modifies the vertical scroll position to make the current top line show up as such.
*/
void ScintillaCocoa::SetVerticalScrollPos() {
+ Editor::SetVerticalScrollPos();
NSScrollView *scrollView = ScrollContainer();
if (scrollView) {
NSClipView *clipView = scrollView.contentView;