rgiot
rgiot
@bpinaud: non, pas de thread. Je suppose que c'est à cause de l'interface graphique qu'on voit ça @p-mary: ok, I'll try that now, but I doubt that it wil lsucceed....
@anlambert ok, thnaks, I'll look on that. Valgrind fails to run my application. ``` --16365:0: aspacem Valgrind: FATAL: VG_N_SEGMENTS is too low. --16365:0: aspacem Increase it and rebuild. Exiting now....
Compiling Tulip with `clang AddressSanitizer` makes the error different. I have tracked 2 additional errors before the one I submitted # Issue 1 on my side So I have fixed...
I do not know if it is a bug of your code, or Tulip or a lack of explanations in the documentation. However, I have found the reason and a...
Hello, I did it this way (reverse order numbering from most recent to less recent) ```css div.templates { counter-reset: n; display: flex; flex-direction: column-reverse; } div.bibtexentry > p:nth-child(1)::before { counter-increment:...
Ok; so I may have an issue that comes from something else than these missing libraries. When I start the application (whatever is the selected version), I have a black/gray/green...
No worries, you can patch by yourself ;)
Note that replacing the two lines ```rust enigo.key(Key::Unicode('#'), enigo::Direction::Click).unwrap(); enigo.key(Key::Unicode('0'), enigo::Direction::Click).unwrap(); ``` by ```rust enigo.text("#0").unwrap(); ``` solves the issue
I have slightly modified the script to use `enigo` 0.2.0 and do not try to press `#` anymore. That still provides the issue. Here is the full compilation/Execution log ```...
Thanks for the feedback. My use case is not trivial, as I am trying to control the emulator of an oldschool machine; so text typing may not be always the...