.. | .. |
---|
51 | 51 | |
---|
52 | 52 | northPanel = new cGridBag(); |
---|
53 | 53 | |
---|
54 | | - northPanel.add(northLabel = new JLabel("XY Exp")); //, ObjEditor.aConstraints, oe.ctrlPanel.getComponentCount()-2); |
---|
55 | | - northPanel.add(northField = new cNumberSlider(this, 0.0001,20,-1)); //, ObjEditor.aConstraints, oe.ctrlPanel.getComponentCount()-2); |
---|
| 54 | + northPanel.add(northLabel = new JLabel("XY factor")); //, ObjEditor.aConstraints, oe.ctrlPanel.getComponentCount()-2); |
---|
| 55 | + northPanel.add(northField = new cNumberSlider(this, 0.0001,20, -1)); //, ObjEditor.aConstraints, oe.ctrlPanel.getComponentCount()-2); |
---|
56 | 56 | oe.ctrlPanel.add(northPanel); |
---|
57 | 57 | |
---|
58 | 58 | oe.ctrlPanel.Return(); |
---|
59 | 59 | eastPanel = new cGridBag(); |
---|
60 | | - eastPanel.add(eastLabel = new JLabel("Z Exp")); //, ObjEditor.aConstraints, oe.ctrlPanel.getComponentCount()-2); |
---|
61 | | - eastPanel.add(eastField = new cNumberSlider(this, 0.0001,20,-1)); //, ObjEditor.aConstraints, oe.ctrlPanel.getComponentCount()-2); |
---|
| 60 | + eastPanel.add(eastLabel = new JLabel("Z factor")); //, ObjEditor.aConstraints, oe.ctrlPanel.getComponentCount()-2); |
---|
| 61 | + eastPanel.add(eastField = new cNumberSlider(this, 0.0001,20, -1)); //, ObjEditor.aConstraints, oe.ctrlPanel.getComponentCount()-2); |
---|
62 | 62 | oe.ctrlPanel.add(eastPanel); |
---|
63 | 63 | |
---|
64 | 64 | oe.ctrlPanel.Return(); |
---|
.. | .. |
---|
68 | 68 | |
---|
69 | 69 | oe.ctrlPanel.Return(); |
---|
70 | 70 | |
---|
71 | | - northField.setFloat(superE.north); |
---|
| 71 | + northField.setFloat(superE.north); |
---|
72 | 72 | eastField.setFloat(superE.east); |
---|
73 | 73 | } |
---|
74 | 74 | |
---|