[jbpm-commits] JBoss JBPM SVN: r5188 - in projects/gwt-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client: process and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Thu Jul 2 09:03:14 EDT 2009


Author: heiko.braun at jboss.com
Date: 2009-07-02 09:03:14 -0400 (Thu, 02 Jul 2009)
New Revision: 5188

Modified:
   projects/gwt-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/engine/DeploymentListView.java
   projects/gwt-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/process/DefinitionListView.java
Log:
Fix filter panel layout on FF3

Modified: projects/gwt-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/engine/DeploymentListView.java
===================================================================
--- projects/gwt-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/engine/DeploymentListView.java	2009-07-02 12:46:12 UTC (rev 5187)
+++ projects/gwt-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/engine/DeploymentListView.java	2009-07-02 13:03:14 UTC (rev 5188)
@@ -207,7 +207,7 @@
       toolBox.add(toolBar, new BoxLayoutData(BoxLayoutData.FillStyle.HORIZONTAL));
 
       // filter
-      LayoutPanel filterPanel = new LayoutPanel();
+      LayoutPanel filterPanel = new LayoutPanel(new BoxLayout(BoxLayout.Orientation.VERTICAL));
       filterPanel.setStyleName("bpm-filter-panel");
       final com.google.gwt.user.client.ui.ListBox dropBox = new com.google.gwt.user.client.ui.ListBox(false);
       dropBox.setStyleName("bpm-operation-ui");

Modified: projects/gwt-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/process/DefinitionListView.java
===================================================================
--- projects/gwt-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/process/DefinitionListView.java	2009-07-02 12:46:12 UTC (rev 5187)
+++ projects/gwt-console/trunk/gui/war/src/main/java/org/jboss/bpm/console/client/process/DefinitionListView.java	2009-07-02 13:03:14 UTC (rev 5188)
@@ -109,7 +109,7 @@
       toolBox.add(toolBar, new BoxLayoutData(BoxLayoutData.FillStyle.HORIZONTAL));
 
       // filter
-      LayoutPanel filterPanel = new LayoutPanel();
+      LayoutPanel filterPanel = new LayoutPanel(new BoxLayout(BoxLayout.Orientation.VERTICAL));
       filterPanel.setStyleName("bpm-filter-panel");
       final com.google.gwt.user.client.ui.ListBox dropBox = new com.google.gwt.user.client.ui.ListBox(false);
       dropBox.setStyleName("bpm-operation-ui");




More information about the jbpm-commits mailing list