mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
FinderRecursivelPanel: ignore INRE from doCustomizeCellRenderer()
This commit is contained in:
@@ -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()) {
|
||||
|
||||
Reference in New Issue
Block a user