Browse Source

Fixed table cell editor having the selected background.

Fixes #121
pull/127/head
weisj 5 years ago
parent
commit
13e400503d
  1. 2
      core/src/main/java/com/github/weisj/darklaf/ui/table/DarkTableCellEditor.java

2
core/src/main/java/com/github/weisj/darklaf/ui/table/DarkTableCellEditor.java

@ -229,7 +229,7 @@ public class DarkTableCellEditor extends DefaultCellEditor {
setupEditorComponent(value, rendererComp);
comp = applyRendererIcon(comp, rendererComp);
CellUtil.setupBackground(comp, table, isSelected, row, DarkTableUI.KEY_ALTERNATE_ROW_COLOR,
CellUtil.setupBackground(comp, table, false, row, DarkTableUI.KEY_ALTERNATE_ROW_COLOR,
"Table.alternateRowBackground");
return comp;
}

Loading…
Cancel
Save