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

Quick fix for controller figaroadstrough (Figaro). Incoming

propertyChangedEvents whereas combo is disposed.
parent e311198b
No related branches found
No related tags found
No related merge requests found
4.0.58 dd/mm/2020
------
* Quick fix for controller figaroadstrough (Figaro). Incoming propertyChangedEvents whereas combo is disposed.
4.0.57 14/08/2020
------
* Fix bug: users do not need to have the token to add/modify/delete command boxes in simulation tabs.
......
......@@ -175,7 +175,11 @@ public class SWTPCombo extends PCombo {
}
public void add(String item) {
propertyCombo.add(item);
if (!propertyCombo.isDisposed()) {
// H.ORTIZ 18/08/2020: Quick fix for controller figaroadstrough (Figaro)
// Incoming propertyChangedEvents whereas combo is disposed
propertyCombo.add(item);
}
}
public void onMagnify() {
......
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