fix #469: Horizontal scrollbar goes missing in deck editor.

master
lodici 2015-10-14 22:32:23 +01:00
parent 2f1bde4d35
commit 5db9d53a41
1 changed files with 1 additions and 0 deletions

View File

@ -251,6 +251,7 @@ public class DeckTablePanel extends TexturedPanel {
public void setDeckTable(JTable aDeckTable) {
this.table = aDeckTable;
table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF); // ensures horizontal scrollbar is visible.
scrollpane.setViewportView(table);
}