Skip to content

Commit 6d4913b

Browse files
committed
FIX: plot
1 parent 3537417 commit 6d4913b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

mne/viz/ica.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,9 @@ def _plot_ica_properties(
260260
alpha=0.2,
261261
)
262262
if plot_lowpass_edge:
263-
spec_ax.axvline(ica.info["lowpass"], lw=2, linestyle="--", color="k", alpha=0.2)
263+
spec_ax.axvline(
264+
this_epochs_src.info["lowpass"], lw=2, linestyle="--", color="k", alpha=0.2
265+
)
264266

265267
# epoch variance
266268
good_indices = np.setdiff1d(np.arange(n_trials), bad_indices)

0 commit comments

Comments
 (0)