diff options
author | Neil <nyamatongwe@gmail.com> | 2025-06-01 08:38:14 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2025-06-01 08:38:14 +1000 |
commit | a180e477ec3efd9d35a4cf32b63ab7354a03371f (patch) | |
tree | 17ed696a646a5acf4305a0795ae56690a04e08b5 /cocoa/ScintillaCocoa.mm | |
parent | 922a70ac051ac097632bc26e56c23fffb65aa43d (diff) | |
download | scintilla-mirror-a180e477ec3efd9d35a4cf32b63ab7354a03371f.tar.gz |
Add SCI_SCROLLVERTICAL API.
Diffstat (limited to 'cocoa/ScintillaCocoa.mm')
-rw-r--r-- | cocoa/ScintillaCocoa.mm | 1 |
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; |