virtual scrollable fix
All checks were successful
studiorailgun/Renderer/pipeline/head This commit looks good

This commit is contained in:
austin 2025-05-15 18:04:35 -04:00
parent 6729d0b623
commit f72766f89c
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,3 @@
#maven.buildNumber.plugin properties file #maven.buildNumber.plugin properties file
#Sat Apr 26 22:05:31 EDT 2025 #Thu May 15 17:55:57 EDT 2025
buildNumber=623 buildNumber=624

View File

@ -1834,6 +1834,7 @@ Room tool functionality scaffolding
Load main level only loads human now Load main level only loads human now
Human uses capsule collidable Human uses capsule collidable
Physics debug render renders capsules Physics debug render renders capsules
Fix virtual scrollable working with certain panels

View File

@ -140,6 +140,11 @@ public class VirtualScrollable extends StandardContainerElement implements Drawa
this.childDiv.removeChild(child); this.childDiv.removeChild(child);
} }
@Override
public void clearChildren(){
this.childDiv.clearChildren();
}
@Override @Override
public boolean handleEvent(Event event){ public boolean handleEvent(Event event){
boolean propagate = true; boolean propagate = true;