v1.2.1: fixed ui elements overlapping tooltips in talents pane

This commit is contained in:
Evan Debenham 2022-03-27 16:10:24 -04:00 committed by Evan Debenham
parent d1c477f8f2
commit e51203f861

View File

@ -109,8 +109,8 @@ public class TalentsPane extends ScrollPane {
blockText = null;
}
for (TalentTierPane p : panes){
content.bringToFront(p);
for (int i = panes.size()-1; i >= 0; i--){
content.bringToFront(panes.get(i));
}
}