You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by rw...@apache.org on 2013/03/26 22:59:41 UTC

svn commit: r1461334 - in /pivot/trunk: ./ wtk/src/org/apache/pivot/wtk/content/TreeBranch.java

Author: rwhitcomb
Date: Tue Mar 26 21:59:40 2013
New Revision: 1461334

URL: http://svn.apache.org/r1461334
Log:
Copy/paste error: setting the regular icon in TreeBranch when setting expanded
icon via URL.

This is a merge of revision 1461332 from branches/2.0.x to trunk.

Modified:
    pivot/trunk/   (props changed)
    pivot/trunk/wtk/src/org/apache/pivot/wtk/content/TreeBranch.java

Propchange: pivot/trunk/
------------------------------------------------------------------------------
  Merged /pivot/branches/2.0.x:r1461332

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/content/TreeBranch.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/content/TreeBranch.java?rev=1461334&r1=1461333&r2=1461334&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/content/TreeBranch.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/content/TreeBranch.java Tue Mar 26 21:59:40 2013
@@ -82,7 +82,7 @@ public class TreeBranch extends TreeNode
             throw new IllegalArgumentException("iconURL is null.");
         }
 
-        setIcon(Image.loadFromCache(iconURL));
+        setExpandedIcon(Image.loadFromCache(iconURL));
     }
 
     /**