Skip to content

Commit

Permalink
Fix the scrolling wrappers
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesWrigley committed May 18, 2024
1 parent 1132364 commit 38a412e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wrapper.jl
Original file line number Diff line number Diff line change
Expand Up @@ -529,13 +529,13 @@ GetScrollMaxY() = igGetScrollMaxY()
SetScrollX(scroll_x)
Set scrolling amount [0..GetScrollMaxX()].
"""
SetScrollX(scroll_x) = igSetScrollXFloat(scroll_x)
SetScrollX(scroll_x) = igSetScrollX_Float(scroll_x)

"""
SetScrollY(scroll_y)
Set scrolling amount [0..GetScrollMaxY()].
"""
SetScrollY(scroll_y) = igSetScrollYFloat(scroll_y)
SetScrollY(scroll_y) = igSetScrollY_Float(scroll_y)

"""
SetScrollHereY(center_y_ratio=0.5)
Expand Down

0 comments on commit 38a412e

Please sign in to comment.