Normand Briere
2019-04-29 c0c300a9dbd4c0fc127e003e9481d3f9246bbe7a
ObjEditor.java
....@@ -1189,7 +1189,8 @@
11891189 //JPanel worldPanel =
11901190 // new gov.nasa.worldwind.examples.ApplicationTemplate.AppPanel(null, true);
11911191 //worldPanel.setName("World");
1192
- centralPanel = new JPanel(new BorderLayout());
1192
+ centralPanel = new cGridBag();
1193
+ centralPanel.preferredWidth = 20;
11931194 timelinePanel = new JPanel(new BorderLayout());
11941195 timelineMenubar = new timeflow.app.TimeflowApp().TimeFlowWindow(timelinePanel);
11951196
....@@ -1222,6 +1223,7 @@
12221223 XYZPanel = new cGridBag().setVertical(true);
12231224 //XYZPanel.setLayout(new GridLayout(3, 1, 5, 5));
12241225
1226
+ XYZPanel.preferredWidth = 5;
12251227 XYZPanel.addComponent(/*BorderLayout.SOUTH,*/sideView); // Scroll);
12261228 XYZPanel.addComponent(/*BorderLayout.CENTER,*/frontView); // Scroll);
12271229 XYZPanel.addComponent(/*BorderLayout.NORTH,*/topView); // Scroll);
....@@ -1286,10 +1288,13 @@
12861288 scrollpane.setWheelScrollingEnabled(true);
12871289 scrollpane.addMouseWheelListener(this); // Default not fast enough
12881290
1289
- /*JTabbedPane*/ scenePanel = new JTabbedPane();
1290
- scenePanel.add(scrollpane);
1291
+ /*JTabbedPane*/ scenePanel = new cGridBag();
1292
+ scenePanel.preferredWidth = 7;
1293
+
1294
+ JTabbedPane tabbedPane = new JTabbedPane();
1295
+ tabbedPane.add(scrollpane);
12911296
1292
- scenePanel.add(FSPane = new cFileSystemPane(this));
1297
+ tabbedPane.add(FSPane = new cFileSystemPane(this));
12931298
12941299 optionsPanel = new JPanel(new GridBagLayout());
12951300
....@@ -1297,8 +1302,9 @@
12971302
12981303 AddOptions(optionsPanel, aConstraints);
12991304
1300
- scenePanel.add(optionsPanel);
1301
-
1305
+ tabbedPane.add(optionsPanel);
1306
+
1307
+ scenePanel.add(tabbedPane);
13021308
13031309 /*
13041310 cTree jTree = new cTree(null);
....@@ -4559,8 +4565,8 @@
45594565 JSplitPane gridPanel;
45604566 JSplitPane bigPanel;
45614567 cGridBag bigThree;
4562
- JTabbedPane scenePanel;
4563
- JPanel centralPanel;
4568
+ cGridBag scenePanel;
4569
+ cGridBag centralPanel;
45644570 JSplitPane cameraPanel;
45654571 JPanel timelinePanel;
45664572 JMenuBar timelineMenubar;