Skip to content
Snippets Groups Projects
Commit af6a77f3 authored by tpylak's avatar tpylak
Browse files

LMS-2190 do not set height of the grid

SVN: 21161
parent e6d5ab68
No related branches found
No related tags found
No related merge requests found
......@@ -146,7 +146,7 @@ public class FeatureVectorSummaryViewer
final IDisposableComponent gridComponent =
FeatureVectorSummaryGrid.create(viewContext, experiment);
panel.add(gridComponent.getComponent(), new RowData(1, LayoutUtils.ONE_PAGE_GRID_HEIGHT_PX));
panel.add(gridComponent.getComponent());
return new IDisposableComponent()
{
......
......@@ -26,8 +26,6 @@ import com.extjs.gxt.ui.client.widget.layout.RowData;
*/
public class LayoutUtils
{
public static final int ONE_PAGE_GRID_HEIGHT_PX = -1;
private static final int MARGIN_SIZE_PX = 10;
/** @return layout data with big margin on all sides */
......
......@@ -216,7 +216,6 @@ public class MaterialDisambiguationGrid extends TypedTableGrid<Material>
setHeader(viewContext.getMessage(Dict.MATERIAL_DISAMBIGUATION_GRID_EXPLANATION));
linkToMaterialDetails();
setBorders(true);
setHeight(LayoutUtils.ONE_PAGE_GRID_HEIGHT_PX);
}
private void linkToMaterialDetails()
......
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