Skip to content

Commit

Permalink
Merge pull request #602 from ocehugo/release-2.6.1
Browse files Browse the repository at this point in the history
Release 2.6.1
  • Loading branch information
lbesnard authored Oct 23, 2019
2 parents ce32d10 + 933b2aa commit 40287a2
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ Java/bin
*.pyc
*.m~
*.log
data
dist
data/*
dist/*
6 changes: 3 additions & 3 deletions GUI/mainWindow.m
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ function mainWindow(windowTitle, sample_data, states, startState, selectionCallb
'HandleVisibility', 'off', ...
'OnCallback', @onZoomIn, ...
'OffCallback', 'zoom(''off'')');
[img,map,alpha] = imread(fullfile(matlabroot,'toolbox','matlab','icons','tool_zoom_in.png'));
[img,map,alpha] = imread(fullfile(matlabroot,'mcr','toolbox','matlab','icons','tool_zoom_in.png'));
img = double(img)/double(intmax(class(img)));
img(repmat(alpha==0,[1 1 3])) = NaN;
zoominb.CData = img;
Expand All @@ -297,7 +297,7 @@ function mainWindow(windowTitle, sample_data, states, startState, selectionCallb
'HandleVisibility', 'off', ...
'OnCallback', @onZoomOut, ...
'OffCallback', 'zoom(''off'')');
[img,map,alpha] = imread(fullfile(matlabroot,'toolbox','matlab','icons','tool_zoom_out.png'));
[img,map,alpha] = imread(fullfile(matlabroot,'mcr','toolbox','matlab','icons','tool_zoom_out.png'));
img = double(img)/double(intmax(class(img)));
img(repmat(alpha==0,[1 1 3])) = NaN;
zoomoutb.CData = img;
Expand All @@ -307,7 +307,7 @@ function mainWindow(windowTitle, sample_data, states, startState, selectionCallb
'HandleVisibility', 'off', ...
'OnCallback', 'pan(''on'')', ...
'OffCallback', 'pan(''off'')');
[img,map,alpha] = imread(fullfile(matlabroot,'toolbox','matlab','icons','tool_hand.png'));
[img,map,alpha] = imread(fullfile(matlabroot,'mcr','toolbox','matlab','icons','tool_hand.png'));
img = double(img)/double(intmax(class(img)));
img(repmat(alpha==0,[1 1 3])) = NaN;
hPan.CData = img;
Expand Down
Binary file modified Java/ddb.jar
Binary file not shown.
2 changes: 0 additions & 2 deletions imosToolboxBatch_Win32.bat

This file was deleted.

Binary file modified imosToolbox_Linux64.bin
Binary file not shown.
2 changes: 0 additions & 2 deletions imosToolbox_Win32.bat

This file was deleted.

Binary file removed imosToolbox_Win32.exe
Binary file not shown.
Binary file modified imosToolbox_Win64.exe
Binary file not shown.

0 comments on commit 40287a2

Please sign in to comment.