Michał Krassowski
Michał Krassowski
Holding shift while starting the Anki app disables add-ons. Did you try restarting Anki? What version of Anki and add-on do you use?
Do you still use Anki? Is this still happening in Anki 2.1?
@slaren thanks for the follow-up. Could you provide more details on your set-up (operating system, PyQt version - you can find it in "Anki → about"). Btw. image inversion and...
Hi, I tried to reproduce the problem, but it did not appear. I used following sentence retrieved from Google Translator: "나는 한국어를 배우고". Could you give more details (you operating...
Thank you for additional information. Could you check out the alpha11 of Anki 2.1 with the newest version of add-on (from this repository, not published yet) and see if the...
Hi, there are new alpha builds (a14 & a15). Could you try these?
I would suggest adjusting `legend.margin` argument of `theme`. For example, staring from: ```R upset( movies, genres, base_annotations=list( 'Intersection size'=intersection_size( counts=FALSE, mapping=aes(fill=mpaa) ) + scale_fill_brewer(), 'Intersection size 2'=intersection_size( counts=FALSE, mapping=aes(fill=mpaa) )...
What version of ggplot2 do you have installed? Of note, it is `legend.margin`, not `legend.margins` - could it be that?
My suggestion was going to be to wrap the plot in `patchwork::wrap_elements` call, but it does not suffice and the [docs](https://patchwork.data-imaginist.com/reference/wrap_elements.html) confirms that `aspect.ratio` is not respected: > Further you...
A simple example for `patchwork` is comparing the result of `ggplot(mtcars) + theme(aspect.ratio=2)` with `wrap_elements(ggplot(mtcars)) + theme(aspect.ratio=2)`.