Bale
Minion
I suppose what I am waiting for is a groundswell of support demanding the feature in one form or another ;-)
Sorry. I put meat in my closet like... twice... maybe? Not a big feature for me. Otherwise I'd have been happy to cheer you on.
I suppose what I am waiting for is a groundswell of support demanding the feature in one form or another ;-)
Sorry. I put meat in my closet like... twice... maybe? Not a big feature for me. Otherwise I'd have been happy to cheer you on.
this.meatLabel.setText( KoLConstants.COMMA_FORMAT.format( KoLCharacter.getAvailableMeat() ) );
this.meatLabel.setText( KoLConstants.COMMA_FORMAT.format( KoLCharacter.getAvailableMeat() ) );
this.meatLabel.setToolTipText( "Closet: " + KoLConstants.COMMA_FORMAT.format( KoLCharacter.getClosetMeat() ) );
I figured I would have a play with this. Firstly, I replicated fronobulax.
Then I added a tooltip instead. The screenshot removed the cursor (it should be hovering over my meat value) but it demonstrates the concept. What do you folk reckon?
Setting a tooltip for closeted meat:
CompactSidePane.java Line 416:
Code:this.meatLabel.setText( KoLConstants.COMMA_FORMAT.format( KoLCharacter.getAvailableMeat() ) );
Add a new line:
Code:this.meatLabel.setText( KoLConstants.COMMA_FORMAT.format( KoLCharacter.getAvailableMeat() ) ); this.meatLabel.setToolTipText( "Closet: " + KoLConstants.COMMA_FORMAT.format( KoLCharacter.getClosetMeat() ) );
this.levelPanel.setToolTipText( "<html> " + KoLCharacter.getAdvancement() + " <br> (" + KoLConstants.COMMA_FORMAT.format( nextLevel - totalPrime ) + " subpoints needed) </html>" );
Yep. That failed for me. Why don't you package your change as a patch and post so we both know that I am running the same code?Can I clarify that you have tried hovering your cursor over the JLabel that contains the (integer) meat value?