Nilearn glass brain with add markers

Hi all,
First of all, I’ve just found nilearn plotting and it is amazing!

I do have a small issue though. I am trying to plot markers on the glass brain and at the borders the circles are cut. So some of the markers close to or on the pial surface are displayed only as hemicircles.

Here’s what I mean: https://www.dropbox.com/s/ndhcro1wq22fvnz/DLPFC_all_mni.png?dl=0

If you would have any suggestions how to fix this, it would be greatly appreciated!
Cheers!

Lauri Tuominen, MD, PhD
University of Ottawa’s Institute of Mental Health Research

if you plot the code, people might know how to help

Here’s a short code that will produce a hemicircle:

from nilearn import plotting
coord = [(11.57, 78.28, -10.29)]
display = plotting.plot_glass_brain(None);
display.add_markers(marker_coords=coord, marker_size=100)

The coordinate is outside the brain but I’d still like to plot it.