- Reversed order of game log.

This commit is contained in:
Sloth
2012-12-05 18:59:38 +00:00
parent be673de8c1
commit f8c58227c8

View File

@@ -122,7 +122,7 @@ public enum VLog implements IVDoc<CLog> {
pnl.removeAll(); pnl.removeAll();
for (int i = 0; i < size; i++) { for (int i = size-1; i >= 0; i--) {
JTextArea tar = new JTextArea(data.get(i).getMessage()); JTextArea tar = new JTextArea(data.get(i).getMessage());
if (i % 2 == 1) { tar.setOpaque(false); } if (i % 2 == 1) { tar.setOpaque(false); }