* don't colorize items without a corresponding match on the other side
This commit is contained in:
parent
0e2c1ecf36
commit
df91452cc0
|
@ -118,7 +118,7 @@ class RenameListCellRenderer extends DefaultFancyListCellRenderer {
|
||||||
} else {
|
} else {
|
||||||
// relative name mode
|
// relative name mode
|
||||||
File path = new File(formattedFuture.toString());
|
File path = new File(formattedFuture.toString());
|
||||||
setText(isSelected || matchProbablity < 1 ? formatPath(path) : colorizePath(path, !renameModel.preserveExtension()));
|
setText(isSelected || matchProbablity < 1 || !renameModel.hasComplement(index) ? formatPath(path) : colorizePath(path, !renameModel.preserveExtension()));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
setText(formattedFuture.preview()); // default text
|
setText(formattedFuture.preview()); // default text
|
||||||
|
|
Loading…
Reference in New Issue