Skip to content

Commit

Permalink
Tweak KmlDataSource
Browse files Browse the repository at this point in the history
  • Loading branch information
Hannah authored Oct 23, 2017
1 parent ae9be87 commit 3f018d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/DataSources/KmlDataSource.js
Original file line number Diff line number Diff line change
Expand Up @@ -1150,7 +1150,7 @@ define([
// If there were empty <Icon> tags in the KML, then billboard.image was set to false above
// However, in this case, the false value would have been converted to a property afterwards
// Thus, we check if billboard.image is defined with value of false
} else if (billboard.image && !billboard.image.getValue()) {
} else if (!billboard.image.getValue()) {
billboard.image = undefined;
}

Expand Down

0 comments on commit 3f018d7

Please sign in to comment.