Added resizing and scrolling

Still buggs while dragging scaled.
This commit is contained in:
xrgman
2015-03-16 19:36:03 +01:00
parent dccdccb573
commit c3ca87ad8f
7 changed files with 261 additions and 245 deletions
+1 -3
View File
@@ -17,10 +17,8 @@ public class Window extends JFrame {
//CONTENT PANELS
JPanel contentPanel = new JPanel(new BorderLayout());
PropertiesPanel pp = new PropertiesPanel();
Panel fp = new Panel(pp);
Panel fp = new Panel();
contentPanel.add(fp, BorderLayout.CENTER);
contentPanel.add(pp, BorderLayout.EAST);
setContentPane(contentPanel);
//END CONTENT PANELS