FinderRecursivelPanel: ignore INRE from doCustomizeCellRenderer()

This commit is contained in:
Yann Cébron
2016-01-07 15:56:57 +01:00
parent 40bdf205fa
commit 34f2d58eaf
@@ -362,7 +362,12 @@ public abstract class FinderRecursivePanel<T> extends JBSplitter implements Data
append("loading...");
}
doCustomizeCellRenderer(this, list, t, index, isSelected, cellHasFocus);
try {
doCustomizeCellRenderer(this, list, t, index, isSelected, cellHasFocus);
}
catch (IndexNotReadyException ignored) {
// ignore
}
Color bg = isSelected ? UIUtil.getTreeSelectionBackground(cellHasFocus) : UIUtil.getTreeTextBackground();
if (!isSelected && myFileColorManager.isEnabled()) {