Fixed dimension of panel
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-csv-import-widget@84256 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
10b5e80ddb
commit
6d1d424c2f
|
@ -36,6 +36,8 @@ public class WizardWindow extends Window {
|
|||
|
||||
protected final String WIZARDWIDTH="640px";
|
||||
protected final String WIZARDHEIGHT="480px";
|
||||
protected final boolean WIZARRESIZABLE=false;
|
||||
|
||||
|
||||
protected ArrayList<WizardCard> cardStack = new ArrayList<WizardCard>();
|
||||
|
||||
|
@ -69,7 +71,7 @@ public class WizardWindow extends Window {
|
|||
this.eventBus= new SimpleEventBus();
|
||||
Log.info(title);
|
||||
//setModal(true);
|
||||
setResizable(false);
|
||||
setResizable(WIZARRESIZABLE);
|
||||
setCollapsible(true);
|
||||
setWidth(WIZARDWIDTH);
|
||||
setHeight(WIZARDHEIGHT);
|
||||
|
|
Loading…
Reference in New Issue