Changeset 30959
- Timestamp:
- 2016-10-27T13:25:51+13:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/trunk/gli/src/org/greenstone/gatherer/gui/ConfigFileEditor.java
r30854 r30959 63 63 //private final String DEFAULT_PROCESSING_INSTRUCTION = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"; 64 64 65 private static final Dimension SIZE = new Dimension( 640,480);65 private static final Dimension SIZE = new Dimension(850,550); 66 66 67 67 public ConfigFileEditor() { 68 69 super(Gatherer.g_man, true); 70 setModal(true); 71 setSize(SIZE); 68 72 69 73 String collection_folder_path = Gatherer.getCollectDirectoryPath(); … … 161 165 } 162 166 163 164 167 // Final dialog setup & positioning. 165 168 setDefaultCloseOperation(DISPOSE_ON_CLOSE); // get rid of this dialog when it's closed (on dispose()) … … 167 170 Dimension screen_size = Configuration.screen_size; 168 171 setLocation((screen_size.width - SIZE.width) / 2, (screen_size.height - SIZE.height) / 2); 169 170 172 } 171 173
Note:
See TracChangeset
for help on using the changeset viewer.