From 62c63d12f5da76c1ca5e7c7f3a36f03c4555d2db Mon Sep 17 00:00:00 2001 From: Jake Karnes Date: Thu, 14 Apr 2022 07:57:06 -0700 Subject: [PATCH] Removing dark green coloring from 'Success' message --- .../com/netspi/awssigner/controller/AWSSignerController.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/com/netspi/awssigner/controller/AWSSignerController.java b/src/main/java/com/netspi/awssigner/controller/AWSSignerController.java index f90287d..0127a20 100644 --- a/src/main/java/com/netspi/awssigner/controller/AWSSignerController.java +++ b/src/main/java/com/netspi/awssigner/controller/AWSSignerController.java @@ -294,8 +294,7 @@ private void initListeners() { Profile newProfile = newProfileOptional.get(); if (profile.getName().equals(newProfile.getName())) { //Showing the same profile. we can update UI fields. - view.profileStatusTextLabel.putClientProperty("html.disable", null); - view.profileStatusTextLabel.setText("Success"); + view.profileStatusTextLabel.setText("Success"); if (profile instanceof CommandProfile) { view.commandExtractedAccessKeyTextField.setText(creds.getAccessKey()); view.commandExtractedSecretKeyTextField.setText(creds.getSecretKey());