Skip to content

Commit 12adccf

Browse files
authoredDec 1, 2020
Merge pull request #716 from aodn/release_2.6.10
Release 2.6.10
2 parents c6e3db8 + 06c5a87 commit 12adccf

5 files changed

+5
-3
lines changed
 

‎Java/ddb.jar

0 Bytes
Binary file not shown.

‎Util/select_points.m

+4-2
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,12 @@
3434
delete(rec);
3535
else
3636
axes(hAx);
37-
k = waitforbuttonpress;
37+
disableDefaultInteractivity(hAx);
38+
waitforbuttonpress;
3839
point1 = get(gca, 'CurrentPoint'); % button down detected
39-
finalRect = rbbox; % return figure units
40+
rbbox; % return figure units
4041
point2 = get(gca, 'CurrentPoint'); % button up detected
42+
disableDefaultInteractivity(hAx);
4143
point1 = point1(1, 1:2); % extract x and y
4244
point2 = point2(1, 1:2);
4345
p1 = min(point1, point2); % calculate locations

‎imosToolbox.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function imosToolbox(auto, varargin)
3737
%
3838

3939
% Set current toolbox version
40-
toolboxVersion = ['2.6.9 - ' computer];
40+
toolboxVersion = ['2.6.10 - ' computer];
4141

4242
if nargin == 0, auto = 'manual'; end
4343

‎imosToolbox_Linux64.bin

10.6 MB
Binary file not shown.

‎imosToolbox_Win64.exe

305 KB
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.