v0.9.3: made further small tweaks to WndHeroInfo

This commit is contained in:
Evan Debenham 2021-05-14 21:12:03 -04:00
parent 9e3e7dab2c
commit 763979e31e
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ windows.wndhero$statstab.gold=Gold Collected
windows.wndhero$statstab.depth=Maximum Depth windows.wndhero$statstab.depth=Maximum Depth
windows.wndheroinfo.talents=talents windows.wndheroinfo.talents=talents
windows.wndheroinfo.talents_msg=Talents are unlocked as the hero levels up. Tier 2 talents start at level 6, more talents appear after defeating the second boss. windows.wndheroinfo.talents_msg=The hero gains one talent point each time they level up. Higher tier talents appear after defeating the second boss.
windows.wndheroinfo.subclasses=subclasses windows.wndheroinfo.subclasses=subclasses
windows.wndheroinfo.subclasses_msg=A subclass can be chosen after defeating the second boss. windows.wndheroinfo.subclasses_msg=A subclass can be chosen after defeating the second boss.
windows.wndheroinfo.abilities=armor abilities windows.wndheroinfo.abilities=armor abilities

View File

@ -235,7 +235,7 @@ public class WndHeroInfo extends WndTabbed {
message.maxWidth((int)width); message.maxWidth((int)width);
message.setPos(0, title.bottom()+4*MARGIN); message.setPos(0, title.bottom()+4*MARGIN);
talentPane.setRect(0, message.bottom() + MARGIN, width, height-message.bottom()); talentPane.setRect(0, message.bottom() + 3*MARGIN, width, height-message.bottom()-3*MARGIN);
} }
} }