Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
Fixing some debug code where I forgot to add a layout, resulting in
Browse files Browse the repository at this point in the history
0-sized Composites.

Signed-off-by: Jordan Deyton <deytonjh@ornl.gov>
  • Loading branch information
Jordan Deyton committed Mar 6, 2015
1 parent 6c80606 commit 8b7a4c1
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -922,6 +922,9 @@ private void populateMeshViewSection(Section section, FormToolkit toolkit) {
final Composite parent0 = new Composite(meshPlotParent, SWT.NONE);
Composite parent1 = new Composite(meshPlotParent, SWT.NONE);
Composite parent2 = new Composite(meshPlotParent, SWT.NONE);
parent0.setLayout(new FillLayout());
parent1.setLayout(new FillLayout());
parent2.setLayout(new FillLayout());
plot.draw("cat0", "type0", parent0);
plot.draw("cat1", "type1", parent1);
plot.draw("cat2", "type2", parent2);
Expand Down

0 comments on commit 8b7a4c1

Please sign in to comment.