Changeset 16148
- Timestamp:
- 2008-06-25T10:45:23+12:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
gli/trunk/src/org/greenstone/gatherer/gui/CreatePane.java
r16134 r16148 535 535 build_button.setEnabled(true); 536 536 cancel_button.setEnabled(false); 537 preview_button.setEnabled(true);537 //preview_button.setEnabled(true); 538 538 //only enable preview if the collection has been built. 539 539 preview_button.setEnabled(Gatherer.c_man.built()); … … 959 959 scroll_pane = null; 960 960 } 961 if(node != null && node.equals(log)) { 962 build_button.setActionCommand(Dictionary.get("CreatePane.Build_Collection")); 963 build_button.setText(Dictionary.get("CreatePane.Build_Collection")); 964 } 961 965 if(node != null && node.equals(building)) { 966 build_button.setActionCommand(Dictionary.get("CreatePane.Build_Collection")); 967 build_button.setText(Dictionary.get("CreatePane.Build_Collection")); 968 969 962 970 previous_pane = options_pane.buildBuild(null); 963 971 scroll_pane = new JScrollPane(previous_pane); … … 966 974 } 967 975 else if(node != null && node.equals(importing)) { 976 build_button.setActionCommand(Dictionary.get("CreatePane.Build_Collection")); 977 build_button.setText(Dictionary.get("CreatePane.Build_Collection")); 978 968 979 previous_pane = options_pane.buildImport(null); 969 980 scroll_pane = new JScrollPane(previous_pane); … … 972 983 } 973 984 else if(node != null && node.equals(scheduling)) { 974 //build_button.setActionCommand(Dictionary.get("CreatePane.Schedule_Build"));975 //build_button.setText(Dictionary.get("CreatePane.Schedule_Build"));985 build_button.setActionCommand(Dictionary.get("CreatePane.Schedule_Build")); 986 build_button.setText(Dictionary.get("CreatePane.Schedule_Build")); 976 987 977 988 previous_pane = options_pane.buildSchedule(null);
Note:
See TracChangeset
for help on using the changeset viewer.