From 5526a985bc3558f5043edd6824d09aa6b4289a49 Mon Sep 17 00:00:00 2001
From: Phillipus
Date: Fri, 29 Nov 2024 20:35:04 +0000
Subject: [PATCH] Should call super.performDefaults() on Preference page
---
.../editor/preferences/NetworkConnectionsPreferencePage.java | 1 +
1 file changed, 1 insertion(+)
diff --git a/com.archimatetool.editor/src/com/archimatetool/editor/preferences/NetworkConnectionsPreferencePage.java b/com.archimatetool.editor/src/com/archimatetool/editor/preferences/NetworkConnectionsPreferencePage.java
index f8c3c9a20..3ebe22dfb 100644
--- a/com.archimatetool.editor/src/com/archimatetool/editor/preferences/NetworkConnectionsPreferencePage.java
+++ b/com.archimatetool.editor/src/com/archimatetool/editor/preferences/NetworkConnectionsPreferencePage.java
@@ -201,6 +201,7 @@ protected void performDefaults() {
fProxyPortTextField.setText(getPreferenceStore().getDefaultString(PREFS_PROXY_PORT));
fRequiresProxyAuthenticationButton.setSelection(getPreferenceStore().getDefaultBoolean(PREFS_PROXY_REQUIRES_AUTHENTICATION));
updateProxyControls();
+ super.performDefaults();
}
private void updateProxyControls() {