Benedikt Spies

Results 45 comments of Benedikt Spies

Hi, you are welcome :) I think that should be possible? Afaik Obsidian does not support this in the default theme either. However, a new style setting could be added...

Thanks for opening the issue. Can you please check if this is an issue with obsidian in general and report back.

> Supported style classes are: > > * `pop-shell-tab` > * `pop-shell-tab-active` > * `pop-shell-tab-inactive` > * `pop-shell-tab-urgent` I tried to customize these by adding it to the `gtk-3.0/gtk.css` of...

@mmstick thanks for your fast reply i added e.g. the following to the `gnome-shell/gnome-shell.css` of my theme ```css .pop-shell-tab, .pop-shell-tab-active, .pop-shell-tab-urgent, .pop-shell-tab-inactive { background: #FF0000!important; } ``` But still no...

Yes, I think so. Isn't that the default behavior of go test and ginkgo? But I am no sure. Let me check.

Still not sure if tests run in parallel with `ginkgo -race -v -randomize-all -trace integrationtests/self`. However, I can reproduce the data race on my machine on `master` branch with seed...

Update: `Serial` does not fix the issue. Those other goroutines are leftovers from another test. I narrowed the problem down to the `handshake_test.go`. The data race can happen when I...

this commit https://github.com/quic-go/quic-go/pull/4239/commits/899031afc0f8fb756ceffda25c777c89eb601a77 fixes only the problem with `ginkgo --focus="Handshake tests rate limiting removes closed connections from the accept queue|Key Update tests downloads a large file" -race -v -randomize-all -trace...

`ginkgo --focus="Handshake tests (using different cipher suites using TLS_CHACHA20_POLY1305_SHA256|Certificate validation accepts the certificate)" -race -v -randomize-all -trace integrationtests/self` That data race is caused by `SetCipherSuite`, because multiple goroutines are accessing...

this is still wip