This commit is contained in:
Douglas Gillespie 2024-04-12 18:39:44 +01:00
commit 209dea47ca
2 changed files with 9 additions and 2 deletions

View File

@ -173,10 +173,10 @@ public class OverlayMark {
//now must find the limits of the zoom. Can be complex shapes so a bit difficult;
double minX=Double.MAX_VALUE;
double maxX=Double.MIN_VALUE;
double maxX=Double.NEGATIVE_INFINITY;
double minY=Double.MAX_VALUE;
double maxY=Double.MIN_VALUE;
double maxY=Double.NEGATIVE_INFINITY;
//now find those maximum, and minimum values,
for (int i=0; i<coordinates.size(); i++){

View File

@ -39,6 +39,7 @@ public class PamScrollSlider extends AbstractPamScrollerAWT {
panel.add(BorderLayout.CENTER, slider);
panel.add(BorderLayout.SOUTH, getButtonPanel());
}
// slider.setFocusable(false);
}
class SliderListener implements ChangeListener {
@ -180,5 +181,11 @@ public class PamScrollSlider extends AbstractPamScrollerAWT {
// TODO Auto-generated method stub
super.setPageStep(pageStep);
}
/**
* @return the slider
*/
public JSlider getSlider() {
return slider;
}
}