Skip to content

Commit

Permalink
too big
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrockhill committed Nov 17, 2023
1 parent 40962d1 commit 486eab0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mne_gui_addons/_ieeg_locate.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# License: BSD (3-clause)

import numpy as np
import platform

from scipy.ndimage import maximum_filter

Expand Down Expand Up @@ -37,7 +38,7 @@
_RADIUS_SCALAR = 0.4
_TUBE_SCALAR = 0.1
_BOLT_SCALAR = 30 # mm
_CH_MENU_WIDTH = 30
_CH_MENU_WIDTH = 30 if platform.system() == "Windows" else 15

# 20 colors generated to be evenly spaced in a cube, worked better than
# matplotlib color cycle
Expand Down

0 comments on commit 486eab0

Please sign in to comment.