Changeset 7375 in josm for trunk/src/org
- Timestamp:
- 2014-08-10T14:52:11+02:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/io/UploadDialog.java
r7358 r7375 233 233 } 234 234 ); 235 236 setMinimumSize(new Dimension(300, 350)); 235 237 236 238 Main.pref.addPreferenceChangeListener(this); -
trunk/src/org/openstreetmap/josm/gui/io/UploadStrategySelectionPanel.java
r7005 r7375 105 105 gc.gridx = 1; 106 106 gc.gridy = 1; 107 gc.weightx = 0.0;107 gc.weightx = 1.0; 108 108 gc.weighty = 0.0; 109 109 gc.gridwidth = 2; … … 113 113 gc.gridx = 3; 114 114 gc.gridy = 1; 115 gc.weightx = 1.0;115 gc.weightx = 0.0; 116 116 gc.weighty = 0.0; 117 117 gc.gridwidth = 1; … … 126 126 gc.gridx = 1; 127 127 gc.gridy = 2; 128 gc.weightx = 0.0;128 gc.weightx = 1.0; 129 129 gc.weighty = 0.0; 130 130 gc.gridwidth = 1; … … 140 140 gc.gridx = 3; 141 141 gc.gridy = 2; 142 gc.weightx = 1.0;142 gc.weightx = 0.0; 143 143 gc.weighty = 0.0; 144 144 gc.gridwidth = 1; … … 153 153 gc.gridx = 1; 154 154 gc.gridy = 3; 155 gc.weightx = 0.0;155 gc.weightx = 1.0; 156 156 gc.weighty = 0.0; 157 157 gc.gridwidth = 2; … … 161 161 gc.gridx = 3; 162 162 gc.gridy = 3; 163 gc.weightx = 1.0;163 gc.weightx = 0.0; 164 164 gc.weighty = 0.0; 165 165 gc.gridwidth = 1; -
trunk/src/org/openstreetmap/josm/gui/widgets/JosmTextField.java
r6830 r7375 30 30 super(doc, text, columns); 31 31 TextContextualPopupMenu.enableMenuFor(this); 32 // Fix minimum size when columns are specified 33 if (columns > 0) { 34 setMinimumSize(getPreferredSize()); 35 } 32 36 } 33 37
Note:
See TracChangeset
for help on using the changeset viewer.