Skip to content

Commit

Permalink
Merge pull request #115 from Gnimuc/scrolling
Browse files Browse the repository at this point in the history
Fix the scrolling wrappers
  • Loading branch information
Gnimuc authored May 19, 2024
2 parents 1132364 + 38a412e commit 9e7a7bd
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 9e7a7bd

Please sign in to comment.