Skip to content

Commit

Permalink
Fix separate canvas (#8408)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeFavelier authored Oct 23, 2020
1 parent 2cc6d7e commit 86db55a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mne/viz/_brain/_brain.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ def setup_time_viewer(self, time_viewer=True, show_traces=True):
_validate_type(show_traces, (bool, str, 'numeric'), 'show_traces')
self.interactor_fraction = 0.25
if isinstance(show_traces, str):
assert 'show_traces' == 'separate' # should be guaranteed earlier
assert show_traces == 'separate' # should be guaranteed earlier
self.show_traces = True
self.separate_canvas = True
else:
Expand Down

0 comments on commit 86db55a

Please sign in to comment.