Skip to content

Commit

Permalink
increase max. zoo factor in mapping tool
Browse files Browse the repository at this point in the history
  • Loading branch information
mca-sh committed Mar 7, 2024
1 parent ea483ee commit ffdb394
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MASH-FRET/.release_version.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"tag" : "1.3.3.3",
"prev_commit_hash" : "2daa9632"
"prev_commit_hash" : "ea483ee5"
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ function buildMappingTool(img, lim, h_fig)
htxt = 14;
winratio = 0.75;
zoomsldratio = 0.3;
stpbig = 1/4;
stpzoomsmall = 1/20;
zoomfactmax = 5;
zoomfactmax = 10;
figttl = 'Mapping tool';
menulbl0 = 'Delete last point';
menulbl1 = 'Delete last set';
Expand Down Expand Up @@ -145,7 +143,7 @@ function buildMappingTool(img, lim, h_fig)
y = y+htxt;
q.slider_zoom = uicontrol('Style', 'slider', 'Units', un, 'Position', ...
[x y wtxt hsld], 'Min', 1, 'Max', zoomfactmax, 'Value', 1, ...
'SliderStep', [stpzoomsmall stpbig], 'Callback', ...
'SliderStep', [1/(4*(zoomfactmax-1)) 1/(zoomfactmax-1)], 'Callback', ...
{@slider_zoom_Callback, h_fig});


Expand Down

0 comments on commit ffdb394

Please sign in to comment.