1
0
mirror of https://github.com/SKCraft/Launcher.git synced 2025-01-07 19:29:03 +01:00

Merge pull request #51 from Slind14/patch-1

Make the instance icon un-editable.
This commit is contained in:
sk89q 2015-03-22 20:20:12 -07:00
commit 1bfec8de08

View File

@ -77,7 +77,7 @@ public class InstanceTableModel extends AbstractTableModel {
public boolean isCellEditable(int rowIndex, int columnIndex) { public boolean isCellEditable(int rowIndex, int columnIndex) {
switch (columnIndex) { switch (columnIndex) {
case 0: case 0:
return true; return false;
case 1: case 1:
return false; return false;
default: default: