Compare commits

...

2 Commits

2 changed files with 6 additions and 1 deletions

View File

@@ -236,6 +236,11 @@ module CyberarmEngine
self.scroll_top = -@scroll_position.y
@scroll_target_position.y = @scroll_position.y
# Fixes resized container that is scrolled down from being stuck overscrolled when resized
if scroll_height < height
@scroll_target_position.y = 0
end
# NOTE: Experiment for removing need to explicitly call gui_state#recalculate at least 3 times for layout to layout...
if old_width != @width || old_height != @height
if @parent

View File

@@ -1,4 +1,4 @@
module CyberarmEngine
NAME = "InDev".freeze
VERSION = "0.24.0".freeze
VERSION = "0.24.1".freeze
end