.. | .. |
---|
951 | 951 | |
---|
952 | 952 | void SetupUI2(ObjEditor oe) |
---|
953 | 953 | { |
---|
954 | | -// oe.aConstraints.weightx = 0; |
---|
955 | | -// oe.aConstraints.weighty = 0; |
---|
956 | | -// oe.aConstraints.gridx = 0; |
---|
957 | | -// oe.aConstraints.gridy = 0; |
---|
958 | 954 | //SetupName(oe); |
---|
959 | 955 | |
---|
960 | 956 | namePanel = new cGridBag(); |
---|
.. | .. |
---|
971 | 967 | setupPanel = new cGridBag().setVertical(false); |
---|
972 | 968 | |
---|
973 | 969 | liveCB = AddCheckBox(setupPanel, "Live", copy.live); |
---|
974 | | - link2masterCB = AddCheckBox(setupPanel, "Supp", copy.link2master); |
---|
| 970 | + if (Globals.ADVANCED) |
---|
| 971 | + link2masterCB = AddCheckBox(setupPanel, "Supp", copy.link2master); |
---|
975 | 972 | hideCB = AddCheckBox(setupPanel, "Hide", copy.hide); |
---|
976 | 973 | // Return(); |
---|
977 | 974 | markCB = AddCheckBox(setupPanel, "Mark", copy.marked); |
---|
.. | .. |
---|
3205 | 3202 | if (!Globals.ANIMATION) |
---|
3206 | 3203 | { |
---|
3207 | 3204 | FileDialog browser = new FileDialog(frame, "Save Animation As...", FileDialog.SAVE); |
---|
3208 | | - browser.show(); |
---|
| 3205 | + browser.setVisible(true); |
---|
3209 | 3206 | String filename = browser.getFile(); |
---|
3210 | 3207 | if (filename != null && filename.length() > 0) |
---|
3211 | 3208 | { |
---|