Skip to content
Snippets Groups Projects
Commit 4dfc01cb authored by Ludovic Apvrille's avatar Ludovic Apvrille
Browse files

Bug on SD capture resolved

parent d8c92421
No related branches found
No related tags found
No related merge requests found
......@@ -1840,8 +1840,10 @@ public abstract class TDiagramPanel extends JPanel implements GenericTree {
if (componentPointed instanceof CheckableInvariant){
checkInvariant.setEnabled(true);
checkMasterMutex.setEnabled(true);
} else {
checkInvariant.setEnabled(false);
checkMasterMutex.setEnabled(false);
}
if (componentPointed instanceof AllowedBreakpoint){
......
......@@ -152,7 +152,7 @@ public class SDInstance extends TGCWithInternalComponent implements SwallowTGCom
}
public int getMyCurrentMinY() {
return Math.min(y-hText, y);
return Math.min(y-hText-heightActor, y);
}
public String getInstanceName() {
......
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