diff options
author | Sven Gothel <[email protected]> | 2011-10-29 15:14:21 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-10-29 15:14:21 +0200 |
commit | 34ef2815dd0f4dc84f35fe5bf72ea876d4b9e882 (patch) | |
tree | b79694f3104319ff7be9329511bf9fdbd9caf25d /src/test | |
parent | 6a770d1ec80a656db62feb8100e3fe58800e79af (diff) | |
parent | 48bc1b090b57eb8ec3cb2f9ff33b69c9d99704d7 (diff) |
Merge branch 'master' into osx_jawt_calayers
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/newt/parenting/TestParenting03AWT.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/newt/parenting/TestParenting03AWT.java b/src/test/com/jogamp/opengl/test/junit/newt/parenting/TestParenting03AWT.java index 780b1690e..aded8f163 100644 --- a/src/test/com/jogamp/opengl/test/junit/newt/parenting/TestParenting03AWT.java +++ b/src/test/com/jogamp/opengl/test/junit/newt/parenting/TestParenting03AWT.java @@ -103,6 +103,10 @@ public class TestParenting03AWT extends UITestCase { final Container cont1 = new Container(); cont1.setLayout(new BorderLayout()); + cont1.add(new Label("iNORTH"), BorderLayout.NORTH); + cont1.add(new Label("iSOUTH"), BorderLayout.SOUTH); + cont1.add(new Label("iEAST"), BorderLayout.EAST); + cont1.add(new Label("iWEST"), BorderLayout.WEST); cont1.add(newtCanvasAWT1, BorderLayout.CENTER); System.err.println("******* Cont1 setVisible"); cont1.setVisible(true); @@ -110,6 +114,10 @@ public class TestParenting03AWT extends UITestCase { final Container cont2 = new Container(); cont2.setLayout(new BorderLayout()); if(use2nd) { + cont2.add(new Label("iNORTH"), BorderLayout.NORTH); + cont2.add(new Label("iSOUTH"), BorderLayout.SOUTH); + cont2.add(new Label("iEAST"), BorderLayout.EAST); + cont2.add(new Label("iWEST"), BorderLayout.WEST); cont2.add(newtCanvasAWT2, BorderLayout.CENTER); } System.err.println("******* Cont2 setVisible"); |