Skip to content

Commit 727fa29

Browse files
committed
Fix single dipole fitting with loose orientation
1 parent f1a0364 commit 727fa29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mne/gui/_xfit.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -611,8 +611,8 @@ def _fit_timecourses(self):
611611
len(dip_with_timecourse.times), axis=0
612612
)
613613
else:
614-
dip["timecourse"] = dip_with_timecourse.amplitude[0]
615-
dip["orientation"] = dip_with_timecourse.ori[0]
614+
dip["timecourse"] = dip_with_timecourse.amplitude
615+
dip["orientation"] = dip_with_timecourse.ori
616616

617617
# Update matplotlib canvas at the bottom of the window
618618
canvas = self._setup_mplcanvas()

0 commit comments

Comments
 (0)