Skip to content
Snippets Groups Projects
Commit 3526d542 authored by Letitia Li's avatar Letitia Li Committed by Fabien Tessier
Browse files

Fixing bug fix for enabling uppaal

parent 15d9285d
No related branches found
No related tags found
2 merge requests!30Merge project manager into master,!29Resolve "Implement Project Management in TTool"
......@@ -139,7 +139,12 @@ public class ModeManager {
actions[TGUIAction.ACT_GEN_RTLOTOS].setEnabled(true);
actions[TGUIAction.ACT_GEN_LOTOS].setEnabled(true);
actions[TGUIAction.ACT_DSE].setEnabled(true);
actions[TGUIAction.ACT_GEN_UPPAAL].setEnabled(false);
if (mgui.getCurrentTURTLEPanel() instanceof TMLComponentDesignPanel){
actions[TGUIAction.ACT_GEN_UPPAAL].setEnabled(true);
}
else {
actions[TGUIAction.ACT_GEN_UPPAAL].setEnabled(false);
}
actions[TGUIAction.ACT_GEN_JAVA].setEnabled(true);
actions[TGUIAction.ACT_SIMU_JAVA].setEnabled(true);
actions[TGUIAction.ACT_GEN_RTLOTOS].setEnabled(true);
......
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