GT-3445 fixed bug when invoking column filters on keybindings table

This commit is contained in:
ghidravore 2020-01-09 14:50:31 -05:00
parent 3c2c23d8ce
commit 3ce8d3fa39
4 changed files with 45 additions and 16 deletions

View file

@ -766,5 +766,10 @@ public class KeyBindingsPanel extends JPanel {
public int getRowCount() {
return tableActions.size();
}
@Override
public Class<?> getColumnClass(int columnIndex) {
return String.class;
}
}
}