revert r19291 for now -- it was preventing the catalog from updating in the quest deck editor and spell shop

This commit is contained in:
myk
2013-01-30 23:00:14 +00:00
parent 7a48173b2c
commit e65e39f50f

View File

@@ -357,12 +357,7 @@ public final class EditorTableView<T extends InventoryItem> {
* a boolean * a boolean
*/ */
public void updateView(final boolean bForceFilter) { public void updateView(final boolean bForceFilter) {
final boolean useFilter = (bForceFilter && (this.filter != null)) || !isUnfiltered();
if (this.pool == null) {
return;
}
final boolean useFilter = bForceFilter && this.filter != null;
if (useFilter || this.wantUnique || bForceFilter) { if (useFilter || this.wantUnique || bForceFilter) {
this.model.clear(); this.model.clear();