in filteredresourcesselectiondialog
, items show file path beside them in grey color while others don"t show path.
why happen , how make sure file paths shown?
the path shown when there multiple entries same name. allow distinguish entries.
if create class derived filteredresourcesselectiondialog
(or based on filtereditemsselectiondialog
) can override isduplicateelement
method control this, example:
@override public boolean isduplicateelement(object item) { return true; }
Comments
Post a Comment