Skip to content

Commit

Permalink
solo.qli: ~Plotfix: Mv hold(h(7), 'on') between irf_plot() calls
Browse files Browse the repository at this point in the history
MOVE hold(h(7), 'on') to be between two irf_plot() calls.
==> Plot 7's top and right boundaries+ticks come back (previously disappeared).

Plot used to be OK, but has changed without modifying the solo.qli code,
possibly due to updated irf_spectrogram().

modified:   generate_quicklooks_24h_6h_2h.m
  • Loading branch information
ErikPGJ committed Jan 20, 2025
1 parent 6487658 commit 3031e21
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -336,10 +336,10 @@ function generate_quicklooks_24h_6h_2h(Data, OutputPaths, Tint24h, logoPath)
%=====================================
% Fill panel 7: Vrpw, Vpas velocities
%=====================================
hold(h(7), 'on');
if ~isempty(Data.Vrpw)
irf_plot(h(7),-Data.Vrpw, 'o-', 'color', COLORS(1,:));
end
hold(h(7), 'on');
if ~isempty(Data.Vpas)
irf_plot(h(7), Data.Vpas.x.tlim(Tint24h), 'color', COLORS(2,:), 'linewidth', LINE_WIDTH);
end
Expand Down

0 comments on commit 3031e21

Please sign in to comment.