Skip to content
Snippets Groups Projects
Commit 53c848e5 authored by Mark McKinnon's avatar Mark McKinnon
Browse files

fixes

fixes
parent c0b8145f
No related branches found
No related tags found
No related merge requests found
...@@ -137,8 +137,8 @@ public synchronized void loadSettings() { ...@@ -137,8 +137,8 @@ public synchronized void loadSettings() {
this.purchaseFromLabel.setVisible(false); this.purchaseFromLabel.setVisible(false);
this.purchaseLink.setVisible(false); this.purchaseLink.setVisible(false);
} else { } else {
this.purchaseFromLabel.setVisible(false); this.purchaseFromLabel.setVisible(true);
this.purchaseLink.setVisible(false); this.purchaseLink.setVisible(true);
} }
} }
...@@ -485,7 +485,12 @@ private synchronized void renderLicenseState() { ...@@ -485,7 +485,12 @@ private synchronized void renderLicenseState() {
this.licenseInfoExpiresLabel.setVisible(false); this.licenseInfoExpiresLabel.setVisible(false);
this.licenseInfoIdLabel.setVisible(false); this.licenseInfoIdLabel.setVisible(false);
this.licenseInfoUserLabel.setVisible(false); this.licenseInfoUserLabel.setVisible(false);
this.purchaseFromLabel.setVisible(true);
this.purchaseLink.setVisible(true);
} else { } else {
this.purchaseFromLabel.setVisible(false);
this.purchaseLink.setVisible(false);
this.licenseInfoExpiresLabel.setVisible(true); this.licenseInfoExpiresLabel.setVisible(true);
this.licenseInfoExpiresLabel.setText(Bundle.CTMalwareScannerOptionsPanel_licenseInfo_expires( this.licenseInfoExpiresLabel.setText(Bundle.CTMalwareScannerOptionsPanel_licenseInfo_expires(
this.licenseInfo.getDecryptedLicense().getExpirationDate() == null this.licenseInfo.getDecryptedLicense().getExpirationDate() == null
......
...@@ -23,7 +23,8 @@ ...@@ -23,7 +23,8 @@
import org.openide.modules.Places; import org.openide.modules.Places;
/** /**
* CT settings that don't include license information. * CT settings that don't include license information. This code must be kept in-sync with code in
* CT Autopsy Importer NBM.
*/ */
public class CTSettings { public class CTSettings {
......
...@@ -22,7 +22,8 @@ ...@@ -22,7 +22,8 @@
import org.sleuthkit.autopsy.coreutils.PlatformUtil; import org.sleuthkit.autopsy.coreutils.PlatformUtil;
/** /**
* Handles persisting CT Settings. * Handles persisting CT Settings. This code must be kept in-sync with code in
* CT Autopsy Importer NBM.
*/ */
public class CTSettingsPersistence { public class CTSettingsPersistence {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment