Skip to content
Snippets Groups Projects
Commit f1d4c785 authored by leprob001's avatar leprob001
Browse files

Updated selection color from white to black in TOA edit window.

parent be9cfb8c
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ if button ~= 1
end
hold on;
artoaGui.editTimeOfArrival.userSelection = scatter(x_closest, y_closest, artoaWorkspace.defaults.pickPointMarkerSize, [1 1 1]);
artoaGui.editTimeOfArrival.userSelection = scatter(x_closest, y_closest, artoaWorkspace.defaults.pickPointMarkerSize, [0 0 0]);
hold off;
artoaWorkspace.editTimeOfArrival.userSelection = index;
......
......@@ -18,7 +18,7 @@ y = [];
% draw the line that will be extended on every click
artoaGui.editTimeOfArrival.userSelection = line( ...
NaN, NaN, 'Color', [1 1 1], 'LineStyle', '-' ...
NaN, NaN, 'Color', [0 0 0], 'LineStyle', '-' ...
);
[dx, dy, button] = ginput(1);
......
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