Skip to content
Snippets Groups Projects
Commit b5a5b598 authored by cramakri's avatar cramakri
Browse files

LMS-1505 Make the left border panel collapsible.

SVN: 15754
parent c1592d27
No related branches found
No related tags found
No related merge requests found
......@@ -212,7 +212,9 @@ public abstract class AbstractViewer<D extends IEntityInformationHolder> extends
protected final static BorderLayoutData createLeftBorderLayoutData()
{
return BorderLayoutDataFactory.create(LayoutRegion.WEST, 300);
BorderLayoutData layoutData = BorderLayoutDataFactory.create(LayoutRegion.WEST, 300);
layoutData.setCollapsible(true);
return layoutData;
}
protected final static BorderLayoutData createRightBorderLayoutData()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment