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

Reducing min size of sdinstance

parent e9e7a372
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
...@@ -81,8 +81,8 @@ public class SDInstance extends TGCScalableWithInternalComponent implements Swal ...@@ -81,8 +81,8 @@ public class SDInstance extends TGCScalableWithInternalComponent implements Swal
height = (int)(500 * tdp.getZoom()); height = (int)(500 * tdp.getZoom());
minWidth = (int)(10 * tdp.getZoom()); minWidth = (int)(10 * tdp.getZoom());
maxWidth = (int)(10 * tdp.getZoom()); maxWidth = (int)(10 * tdp.getZoom());
minHeight = (int)(250 * tdp.getZoom()); minHeight = (int)(25 * tdp.getZoom());
maxHeight = (int)(1500 * tdp.getZoom()); maxHeight = (int)(2500 * tdp.getZoom());
//TraceManager.addDev("Init tgc= " + this + " minHeight=" + minHeight); //TraceManager.addDev("Init tgc= " + this + " minHeight=" + minHeight);
//TraceManager.addDev("Init tgc= " + this + " maxHeight=" + maxHeight); //TraceManager.addDev("Init tgc= " + this + " maxHeight=" + maxHeight);
oldScaleFactor = tdp.getZoom(); oldScaleFactor = tdp.getZoom();
......
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