Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-wizard-widget@99025 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-07-25 18:28:36 +00:00 committed by Giancarlo Panichi
parent bc0dca0bf0
commit 75a4195ddc
1 changed files with 4 additions and 1 deletions

View File

@ -68,6 +68,8 @@ public class WizardWindow extends Window {
protected ArrayList<WizardListener> listeners;
protected EventBus eventBus;
protected ToolBar toolbar;
/**
* Create a new Wizard Window with the specified title.
@ -100,7 +102,7 @@ public class WizardWindow extends Window {
cardContainer = new CardLayoutContainer();
container.add(cardContainer, new VerticalLayoutData(1, 1));
ToolBar toolbar = new ToolBar();
toolbar = new ToolBar();
toolbar.setSpacing(2);
toolbar.addStyleName(ThemeStyles.getStyle().borderTop());
@ -286,6 +288,7 @@ public class WizardWindow extends Window {
close(false);
}
};
toolbar.forceLayout();
forceLayout();
}