| author | Kevin Sawicki | 2011-07-23 06:18:32 (EDT) |
|---|---|---|
| committer | Steffen Pingel | 2011-07-23 06:18:32 (EDT) |
| commit | f10862f5a782cc7d7b292acac4b8718dc81f2cc6 (patch) (side-by-side diff) | |
| tree | 795cc1a81492d1c9e1c551c0f25a0ee22f6bed3e | |
| parent | 2f37e52152ac2e926277ef2f33dbc1dd4e5564a0 (diff) | |
| download | org.eclipse.mylyn.commons-f10862f5a782cc7d7b292acac4b8718dc81f2cc6.zip org.eclipse.mylyn.commons-f10862f5a782cc7d7b292acac4b8718dc81f2cc6.tar.gz org.eclipse.mylyn.commons-f10862f5a782cc7d7b292acac4b8718dc81f2cc6.tar.bz2 | |
NEW - bug 352919: [patch] Password field text set to user name
https://bugs.eclipse.org/bugs/show_bug.cgi?id=352919
| -rw-r--r-- | org.eclipse.mylyn.commons.team/src/org/eclipse/mylyn/commons/ui/team/RepositoryLocationPart.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.commons.team/src/org/eclipse/mylyn/commons/ui/team/RepositoryLocationPart.java b/org.eclipse.mylyn.commons.team/src/org/eclipse/mylyn/commons/ui/team/RepositoryLocationPart.java index ae2e89f..ff8474a 100644 --- a/org.eclipse.mylyn.commons.team/src/org/eclipse/mylyn/commons/ui/team/RepositoryLocationPart.java +++ b/org.eclipse.mylyn.commons.team/src/org/eclipse/mylyn/commons/ui/team/RepositoryLocationPart.java @@ -7,6 +7,7 @@ * * Contributors: * Tasktop Technologies - initial API and implementation + * GitHub - fix for bug 352919 *******************************************************************************/ package org.eclipse.mylyn.commons.ui.team; @@ -143,7 +144,7 @@ public class RepositoryLocationPart { if (credentials != null) { enabledButton.setSelection(!isEnablementReversed()); userText.setText(credentials.getUserName()); - passwordText.setText(credentials.getUserName()); + passwordText.setText(credentials.getPassword()); savePasswordButton.setSelection(true); } else { enabledButton.setSelection(isEnablementReversed()); |

