Use proper view index in table selection
This commit is contained in:
parent
3e33c8fceb
commit
c5e8bbbe9c
@ -86,7 +86,10 @@ public class ComponentPresetTable extends JTable {
|
|||||||
ComponentPreset preset = ComponentPresetTable.this.presets.get(rowIndex);
|
ComponentPreset preset = ComponentPresetTable.this.presets.get(rowIndex);
|
||||||
Application.getComponentPresetDao().setFavorite(preset, presetType, (Boolean) aValue);
|
Application.getComponentPresetDao().setFavorite(preset, presetType, (Boolean) aValue);
|
||||||
ComponentPresetTable.this.updateFavorites();
|
ComponentPresetTable.this.updateFavorites();
|
||||||
ComponentPresetTable.this.setRowSelectionInterval(rowIndex, rowIndex);
|
int viewIndex = ComponentPresetTable.this.convertRowIndexToView(rowIndex);
|
||||||
|
if (viewIndex != -1) {
|
||||||
|
ComponentPresetTable.this.setRowSelectionInterval(viewIndex, viewIndex);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
x
Reference in New Issue
Block a user