Updated to Liferay 6.2

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/databases-manager-portlet@129657 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2016-06-29 15:58:50 +00:00
parent 0665554cd5
commit f2d02b8ef3
1 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ public class GxtTreePanel extends LayoutContainer {
}
private void initLayout() throws Exception {
setLayout(new FlowLayout(10));
setLayout(new FlowLayout(0));
treePanel = new TreePanel<FileModel>(store) {
@Override
public boolean hasChildren(FileModel parent) {
@ -139,7 +139,7 @@ public class GxtTreePanel extends LayoutContainer {
// expand level 1
treePanel.setExpanded(store.getRootItems().get(0), true);
add(treePanel, new FlowData(10));
add(treePanel, new FlowData(0));
addListeners();
}