Author: paperwing
Date: 2012-06-11 08:29:52 -0700 (Mon, 11 Jun 2012)
New Revision: 29519

Removed:
   
core3/impl/trunk/app-impl/src/main/java/org/cytoscape/app/internal/StartupMostlyFinished.java
Modified:
   
core3/impl/trunk/app-impl/src/main/java/org/cytoscape/app/internal/ui/InstallFromStorePanel.java
Log:
Clearing search bar no longer resets app results list when tag is selected, app 
description box now has padding

Deleted: 
core3/impl/trunk/app-impl/src/main/java/org/cytoscape/app/internal/StartupMostlyFinished.java
===================================================================
--- 
core3/impl/trunk/app-impl/src/main/java/org/cytoscape/app/internal/StartupMostlyFinished.java
       2012-06-10 20:11:20 UTC (rev 29518)
+++ 
core3/impl/trunk/app-impl/src/main/java/org/cytoscape/app/internal/StartupMostlyFinished.java
       2012-06-11 15:29:52 UTC (rev 29519)
@@ -1,24 +0,0 @@
-package org.cytoscape.app.internal;
-
-import java.util.Map;
-
-import org.cytoscape.application.events.CyStartEvent;
-import org.cytoscape.application.swing.CySwingApplication; 
-import org.cytoscape.event.CyEventHelper;
-/**
- * A simple class whose instantiation indicates that startup is
- * largely (but not necessarily 100 percent) complete for Cytoscape.
- * This class should only exist once in the application and the reason it
- * exists here is that the app-impl has dependencies on nearly every
- * aspect of the system, so once those dependencies are fulfilled, we 
- * we can assume that the application is ready for use, and thus the
- * splash screen can be closed.
- */
-class StartupMostlyFinished {
-
-       public StartupMostlyFinished(final CyEventHelper eventHelper) {
-
-               // fire event "start up mostly finished"
-               eventHelper.fireEvent(new CyStartEvent(this));
-       }       
-}

Modified: 
core3/impl/trunk/app-impl/src/main/java/org/cytoscape/app/internal/ui/InstallFromStorePanel.java
===================================================================
--- 
core3/impl/trunk/app-impl/src/main/java/org/cytoscape/app/internal/ui/InstallFromStorePanel.java
    2012-06-10 20:11:20 UTC (rev 29518)
+++ 
core3/impl/trunk/app-impl/src/main/java/org/cytoscape/app/internal/ui/InstallFromStorePanel.java
    2012-06-11 15:29:52 UTC (rev 29519)
@@ -177,7 +177,7 @@
             }
         });
 
-        descriptionSplitPane.setDividerLocation(421);
+        descriptionSplitPane.setDividerLocation(390);
 
         tagsSplitPane.setDividerLocation(175);
 
@@ -361,7 +361,9 @@
                
                        @Override
                        public void removeUpdate(DocumentEvent arg0) {
-                               showFilteredApps();
+                               if (filterTextField.getText().length() != 0) {
+                                       showFilteredApps();
+                               }
                        }
                        
                        @Override
@@ -501,14 +503,19 @@
                
                String text = "";
                
-               text += "<html> <head> </head> <body>";
+               text += "<html> <head> </head> <body hspace=\"8\" 
vspace=\"8\">";
                
                // App hyperlink to web store page
                // text += "<p style=\"margin-top: 0\"> <a href=\"" + 
selectedApp.getPageUrl() + "\">" + selectedApp.getPageUrl() + "</a> </p>";
                
                // App image
-               text += "<img border=\"0\" src=\"" + 
appManager.getWebQuerier().getAppStoreUrl() + selectedApp.getIconUrl() + "\" 
alt=\"" + selectedApp.getFullName() + "\"/>";
+               //text += "<div style=\"text-align: center;\">";
+               text += "<img border=\"0\" ";
+               text += "src=\"" + appManager.getWebQuerier().getAppStoreUrl() 
+                       + selectedApp.getIconUrl() + "\" alt=\"" + 
selectedApp.getFullName() + "\"/>";
                
+               //text += "</div>";
+               
                // App name
                text += "<p> <b>" + selectedApp.getFullName() + "</b> </p>";
                

-- 
You received this message because you are subscribed to the Google Groups 
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/cytoscape-cvs?hl=en.

Reply via email to