Skip to content
This repository has been archived by the owner on Jan 1, 2021. It is now read-only.

Commit

Permalink
Fix missing autocomplete bug, caused by some utterly bogus Flex 4 beh…
Browse files Browse the repository at this point in the history
…aviour.

Fuck you, Adobe.
  • Loading branch information
systemed committed Oct 2, 2011
1 parent 039e197 commit e235e7f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion net/systemeD/potlatch2/mapfeatures/MapFeatures.as
Expand Up @@ -61,7 +61,8 @@ package net.systemeD.potlatch2.mapfeatures {
}

for each (var inputSet:XML in feature..inputSet) {
tagsFromInputSet(definition.inputSet.(@id == String(inputSet.@ref)), f);
var inputSetName:String=inputSet.@ref; // Flex 4 breaks if this is included directly in the line below
tagsFromInputSet(definition.inputSet.(@id == inputSetName), f);
}
}

Expand Down

0 comments on commit e235e7f

Please sign in to comment.