Skip to content

Commit

Permalink
fixed duplicateValues calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
danielwagner committed Jun 28, 2012
1 parent cf7be07 commit 1349f06
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -324,7 +324,9 @@ qx.Class.define("fce.view.FeatureSelector", {
var temp = distinctValues.concat();
for (var x=0, y=temp.length; x<y; x++) {
if (!fce.Util.valuesEqual(setData[keyName], temp[x])) {
distinctValues.push(setData[keyName]);
if (!qx.lang.Array.contains(temp, setData[keyName])) {
distinctValues.push(setData[keyName]);
}
}
}
}
Expand Down

0 comments on commit 1349f06

Please sign in to comment.