Changeset 13892 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2018-06-04T21:03:37+02:00 (6 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/oauth
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorizationUI.java
r13761 r13892 104 104 + tr("Please enter your OSM user name and password. The password will <strong>not</strong> be saved " 105 105 + "in clear text in the JOSM preferences and it will be submitted to the OSM server <strong>only once</strong>. " 106 + "Subsequent data upload requests don''t use your password any more.") 106 + "Subsequent data upload requests don''t use your password any more.").replaceAll("\\. ", ".<br>") 107 107 + "</p>" 108 108 + "</body></html>"); -
trunk/src/org/openstreetmap/josm/gui/oauth/OAuthAuthorizationWizard.java
r13111 r13892 206 206 207 207 setTitle(tr("Get an Access Token for ''{0}''", apiUrl)); 208 this.setMinimumSize(new Dimension( 600, 420));208 this.setMinimumSize(new Dimension(500, 400)); 209 209 210 210 pnlFullyAutomaticAuthorisationUI = new FullyAutomaticAuthorizationUI(apiUrl, executor); … … 313 313 public void setVisible(boolean visible) { 314 314 if (visible) { 315 pack(); 315 316 new WindowGeometry( 316 317 getClass().getName() + ".geometry", 317 318 WindowGeometry.centerInWindow( 318 319 Main.parent, 319 new Dimension(450, 540)320 getPreferredSize() 320 321 ) 321 322 ).applySafe(this);
Note:
See TracChangeset
for help on using the changeset viewer.