Add tooltip to absorption panel

It's quite hard to read the text on this panel, so I added a tooltip.
This commit is contained in:
Jonathan Beaudoin
2018-06-10 18:59:54 -04:00
committed by GitHub
parent 8f3577a368
commit 407c2871e1

View File

@@ -72,4 +72,10 @@ public class AbsorptionCounter extends Counter
return belowThresholdColor;
}
}
@Override
public String getTooltip()
{
return "Absorption: " + absorption;
}
}