Changeset 37337
- Timestamp:
- 2023-02-21T17:35:22+13:00 (4 weeks ago)
- Location:
- main/trunk/gli/src/org/greenstone/gatherer
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/trunk/gli/src/org/greenstone/gatherer/Gatherer.java
r37330 r37337 787 787 // Ensure width and height are reasonable 788 788 size = bounds.getSize(); 789 789 790 if (size.width < 640) { 790 791 size.width = 640; … … 799 800 size.height = Configuration.screen_size.height; 800 801 } 801 802 802 803 if (!g_man_built) { 803 804 g_man.setSize(size); 804 805 g_man.display(); 805 806 -
main/trunk/gli/src/org/greenstone/gatherer/download/DownloadScrollPane.java
r31880 r37337 73 73 job = null; 74 74 job_queue = new Vector(); 75 76 Color colour_ctb = Configuration.getColor("coloring.collection_tree_background", false); 77 75 78 filler_pane = new JPanel(); 79 filler_pane.setBackground(colour_ctb); 80 76 81 list_pane = new JPanel(); 77 82 list_pane.setLayout(new BoxLayout(list_pane, BoxLayout.Y_AXIS)); 83 list_pane.setBackground(colour_ctb); 84 78 85 list_scroll = new JScrollPane(list_pane); 79 86 } -
main/trunk/gli/src/org/greenstone/gatherer/gui/GUIManager.java
r36580 r37337 143 143 } 144 144 145 145 public void setSize(Dimension size) 146 { 147 this.size = size; 148 super.setSize(size); 149 } 150 146 151 public void windowGainedFocus(WindowEvent e) 147 152 {
Note:
See TracChangeset
for help on using the changeset viewer.