* Handles the event when the horizontal scrollbar reaches the end.
()
| 2560 | * Handles the event when the horizontal scrollbar reaches the end. |
| 2561 | */ |
| 2562 | function onscrollHEnd() { |
| 2563 | suppressCursorReveal(1200); |
| 2564 | lockScrollbarScrollPosition({ left: editor?.scrollDOM?.scrollLeft }, 1200); |
| 2565 | preventScrollbarH = false; |
| 2566 | setHScrollValue(); |
| 2567 | } |
| 2568 | |
| 2569 | /** |
| 2570 | * Sets scrollbars value based on the editor's scroll position. |
nothing calls this directly
no test coverage detected