You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2013/01/17 00:18:00 UTC

svn commit: r1434478 - /flex/sdk/branches/develop/mustella/utilities/ImageDiffAIR/src/ImageDiffAIR.mxml

Author: aharui
Date: Wed Jan 16 23:18:00 2013
New Revision: 1434478

URL: http://svn.apache.org/viewvc?rev=1434478&view=rev
Log:
Windows wasn't handling the @ correctly.

Modified:
    flex/sdk/branches/develop/mustella/utilities/ImageDiffAIR/src/ImageDiffAIR.mxml

Modified: flex/sdk/branches/develop/mustella/utilities/ImageDiffAIR/src/ImageDiffAIR.mxml
URL: http://svn.apache.org/viewvc/flex/sdk/branches/develop/mustella/utilities/ImageDiffAIR/src/ImageDiffAIR.mxml?rev=1434478&r1=1434477&r2=1434478&view=diff
==============================================================================
--- flex/sdk/branches/develop/mustella/utilities/ImageDiffAIR/src/ImageDiffAIR.mxml (original)
+++ flex/sdk/branches/develop/mustella/utilities/ImageDiffAIR/src/ImageDiffAIR.mxml Wed Jan 16 23:18:00 2013
@@ -262,8 +262,8 @@
 			image1Loaded = false;
 			image2Loaded = false;
 
-			image1.source = selectedImagesArray[currentIndex].url;
-			image2.source = selectedImagesArray[currentIndex].url.substring(0, selectedImagesArray[currentIndex].url.length - 8);
+			image1.source = decodeURIComponent(selectedImagesArray[currentIndex].url);
+			image2.source = decodeURIComponent(selectedImagesArray[currentIndex].url.substring(0, selectedImagesArray[currentIndex].url.length - 8));
 
 			progressLabel.text = (currentIndex+1) + " of " + selectedImagesArray.length;
         }