Skip to content
Snippets Groups Projects
Verified Commit 3be5780c authored by leprob001's avatar leprob001
Browse files

chore: "Apply offsets" checkbox is now next to the "Track" button

parent ce10262a
No related branches found
No related tags found
No related merge requests found
350
\ No newline at end of file
351
\ No newline at end of file
......@@ -482,7 +482,7 @@ artoaGui.trackParameter.frameTrackButtons = uipanel( ...
'Title', 'Tracking controls', ...
'Units', 'normalized', ...
'BackgroundColor', 'white', ...
'Position', [(1-left-1.55*width) .025 1.5*width .1] ...
'Position', [left .025 (5*left + 3.25*width) .1] ...
);
artoaGui.trackParameter.buttonTrack = uicontrol( ...
......@@ -491,17 +491,27 @@ artoaGui.trackParameter.buttonTrack = uicontrol( ...
'Style', 'PushButton', ...
'FontSize', 8, ...
'Units', 'normalized', ...
'Position', [2*left+.45 .25 .45 2.5*buttonHeight], ...
'Position', [3*left+.70 .25 .20 2.5*buttonHeight], ...
'CallBack', pCallbacks.buttonTrack ...
);
artoaGui.editOffsets.checkboxUseOffsets = uicontrol( ...
'Parent', artoaGui.trackParameter.frameTrackButtons, ...
'String', 'Apply offsets', ...
'Style', 'checkbox', ...
'FontSize', 8, ...
'Units', 'normalized', ...
'Position', [2*left+.50 .25 .20 2.5*buttonHeight], ...
'CallBack', pCallbacks.checkboxUseOffsets ...
);
artoaGui.trackParameter.checkboxCalculateVariations = uicontrol( ...
'Parent', artoaGui.trackParameter.frameTrackButtons, ...
'String', 'Calculate variations', ...
'Style', 'checkbox', ...
'FontSize', 8, ...
'Units', 'normalized', ...
'Position', [left .25 .45 2.5*buttonHeight], ...
'Position', [left+.30 .25 .20 2.5*buttonHeight], ...
'Value', 0, ...
'CallBack', pCallbacks.checkboxCalculateVariations ...
);
......@@ -620,16 +630,6 @@ artoaGui.editOffsets.buttonCalculateOffsets = uicontrol( ...
'CallBack', pCallbacks.buttonCalculateOffsets ...
);
artoaGui.editOffsets.checkboxUseOffsets = uicontrol( ...
'Parent', artoaGui.editOffsets.frameOptimumOffsets, ...
'String', 'Apply offsets', ...
'Style', 'checkbox', ...
'FontSize', 8, ...
'Units', 'normalized', ...
'Position', [left .75 fullwidth/2 .2], ...
'CallBack', pCallbacks.checkboxUseOffsets ...
);
artoaGui.editOffsets.textFloatOffsetToApplied = uicontrol( ...
'Parent', artoaGui.editOffsets.frameOptimumOffsets, ...
'String', 'Float', ...
......
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