Skip to content
Snippets Groups Projects
Commit c174c667 authored by helene ortiz's avatar helene ortiz
Browse files

Backpedaling: a modification in version 5.0.3 "Force reload of settings

file when command box is starting." did not correctly fix the problem,
the load method must be called in endInit method.
parent 16f23cf2
No related branches found
No related tags found
No related merge requests found
5.2.1 dd/mm/yyyy
-----
* Backpedaling: a modification in version 5.0.3 "Force reload of settings file when command box is starting." did not correctly fix the problem,
* the load method must be called in endInit method.
5.2.0 16/12/2024
-----
* Pause at end implementation.
......
......@@ -138,8 +138,9 @@ public class SWTSettingsControllerCommandPluginPeer extends ControllerCommandPlu
refreshSubDirectoryCombo();
refreshFileCombo();
setFileComboValue(fileNameProperty.getValue());
initialiseProposalDirectory();
load();
} catch (PropertyNotFoundException e) {
MainWindow.getInstance().onPropertyNotFoundException(e);
......@@ -517,13 +518,4 @@ public class SWTSettingsControllerCommandPluginPeer extends ControllerCommandPlu
modificationInProgress = false;
}
}
@Override
public void onExecutionPhaseStateChanged() {
super.onExecutionPhaseStateChanged();
if (commandBox.getExecutionPhaseState().isRunning()) {
load();
}
}
}
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