Clemens Brunner

Results 317 comments of Clemens Brunner

> The central idea that the big refactoring took care of was that we have one code path for all electrode locations (digitized or from a template / "theoretical") to...

FWIW, the `biosemi64` montage contains 10-20 labels and seems to have template locations (as opposed to realistic ones): ![Figure_2](https://user-images.githubusercontent.com/4377312/76943838-482c4a00-6900-11ea-8eec-79ca96e9df5a.png) This looks OK. Here's what this montage looks with 0.19.2: ![Figure_current](https://user-images.githubusercontent.com/4377312/76944030-9ccfc500-6900-11ea-985d-3c2f3d93b40e.png)...

That's part of the problem. I'd expect a template montage to look good by default when plotted on a sphere. I don't want to tweak parameters until the locations are...

If we really want to stay compatible, we could also think about adding a new parameter just for this purpose, e.g. ```python mne.get_config("", extended=True) ``` The default would be `extended=False`,...

Would repairing also work when there are all-channel bad annotations? Currently, I sometimes have rather short artifact segments in relatively long epochs, and it is wasteful to discard the whole...

Take a look how I do it in MNELAB. It works on macOS and Linux, but unfortunately Qt doesn't support that on Windows (yet).

No, I'm catching a `QEvent` here: https://github.com/cbrnr/mnelab/blob/main/mnelab/mainwindow.py#L1011-L1019 This event is triggered whenever the OS theme changes. Therefore, you can use it to change themes on the fly, but as I...

However, since you're using style sheets this will probably not work. I think the white title bar is also due to style sheets.

> Nice thank you, maybe it would work if we connect the Stylesheet-Change with your PaletteChange-Event? It's worth a try. > Could it be, that Qt changes to dark automatically...

> Personally my vote would be to use Qt's builtin dark support/styling as much as possible (OSX via icon change) and resort to the style sheet method where Qt does...