Planing Poker reveals cardvalue before clicking "show"
When you hover cards you will get the "other stories estimated with X points", even if the card value isn't visible at the moment.
Status
Issue is closed for Release 0.26.
Comments
Mon, Mar 10, 2014, 10:57 by Stefan Höhn
The following modification should fix it, if I am not wrong (at least I debugged and verified it and it works for me):
public class PlanningPokerCardWidget ...
protected Widget onInitialization() {
...
// was: if (mouseOverHandler != null)
// should become
if (mouseOverHandler != null && visible)
cheers
Stefan