This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function frame_scrollbar(content_height) | |
| local frame = get_current_frame() | |
| local frame_origin = get_frame_origin() | |
| local frame_size = get_frame_size() | |
| local frame_height = frame_size.y | |
| local scrollbar_height_relative = frame_height / content_height | |
| if scrollbar_height_relative >= 1 then | |
| return | |
| end |