v0.7.5d: disabled highlighting for game log and floating text

This commit is contained in:
Evan Debenham 2019-10-18 18:57:44 -04:00
parent b993e00c97
commit 6707a22502
2 changed files with 2 additions and 0 deletions

View File

@ -46,6 +46,7 @@ public class FloatingText extends RenderedTextBlock {
public FloatingText() {
super(9*PixelScene.defaultZoom);
setHightlighting(false);
}
@Override

View File

@ -86,6 +86,7 @@ public class GameLog extends Component implements Signal.Listener<String> {
} else {
lastEntry = PixelScene.renderTextBlock( text, 6 );
lastEntry.setHightlighting( false );
lastEntry.hardlight( color );
lastColor = color;
add( lastEntry );