GuiReplayInstanceChooser: Undid underlining the Replay File String and underline the Gui Title again

This commit is contained in:
CrushedPixel
2015-07-16 16:46:07 +02:00
parent 6a5b6fdac5
commit 5634507ce7

View File

@@ -33,7 +33,7 @@ public class GuiReplayInstanceChooser extends GuiScreen {
private List<File> filesToChooseFrom = new ArrayList<File>();
private final String TITLE = I18n.format("replaymod.gui.viewer.chooser.title");
private final String REPLAYFILE = ChatFormatting.UNDERLINE+I18n.format("replaymod.gui.editor.replayfile")+":"+ChatFormatting.RESET;
private final String REPLAYFILE = I18n.format("replaymod.gui.editor.replayfile")+":";
private final String MESSAGE;
private final String ORIGINAL = ChatFormatting.GREEN+I18n.format("replaymod.gui.original")+ChatFormatting.RESET;
@@ -42,7 +42,7 @@ public class GuiReplayInstanceChooser extends GuiScreen {
public GuiReplayInstanceChooser(final FileInfo fileInfo, File downloadedFile) {
int id = fileInfo.getId();
this.MESSAGE = I18n.format("replaymod.gui.viewer.chooser.message", fileInfo.getName());
this.MESSAGE = ChatFormatting.UNDERLINE+I18n.format("replaymod.gui.viewer.chooser.message", fileInfo.getName())+ChatFormatting.RESET;
//gather all applicable replay files
try {