Skip to content

Commit 62c63d1

Browse files
committed
Removing dark green coloring from 'Success' message
1 parent fe5d057 commit 62c63d1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/com/netspi/awssigner/controller/AWSSignerController.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,8 +294,7 @@ private void initListeners() {
294294
Profile newProfile = newProfileOptional.get();
295295
if (profile.getName().equals(newProfile.getName())) {
296296
//Showing the same profile. we can update UI fields.
297-
view.profileStatusTextLabel.putClientProperty("html.disable", null);
298-
view.profileStatusTextLabel.setText("<html><font color='darkgreen'>Success</font></html>");
297+
view.profileStatusTextLabel.setText("Success");
299298
if (profile instanceof CommandProfile) {
300299
view.commandExtractedAccessKeyTextField.setText(creds.getAccessKey());
301300
view.commandExtractedSecretKeyTextField.setText(creds.getSecretKey());

0 commit comments

Comments
 (0)