Dov Grobgeld
Dov Grobgeld
Just a comment, regarding the comment by @bhennion in #3489, that it is actually not that difficult. Here is a possible implementation to implement floodfill in vector mode by using...
@actboy168 Thanks. But even though #642 provides a workaround, I still think it is valid to fix the underlying bug that the lua language server is using gcc for linking...
@actboy168 Unfortunately, my current solution is not working very well, and I tried to understand what to change in luamake to make it use g++ instead of gcc for linking,...
Thanks! That should solve it. Just for completeness, is there a way of changing the linker command as well? E.g. in the case you have a mixed C and C++...
Ok. I guess you are right. I just realized that g++ is using a c-compiler for files with the .c extension.
FYI. It took a while, but I finally put npeuclid on PyPi.
Regarding the implementation, here is an alternate possible method. Don't store the image buffers, but store all the cairo lineto and moveto actions in a list. On Control-Z do the...
FYI: I started working on this and made a first implementation. See: https://github.com/pdfpc/pdfpc/pull/644 . I'll be happy to get comments about my implementation, as I have not done much Vala...
When in eraser mode and entering the presenter window, the tool is automatically changed to pen mode
@fnevgeny Thanks. The `disable-input-autodetection` solves the problem for me. I still don't know how to distinguish between a mouse button press and a stylus button press, to make the stylus...
When in eraser mode and entering the presenter window, the tool is automatically changed to pen mode
I have a One by Wacom. All events come through as "normal" mouse events, and you have to probe the event further to figure out what its source is. I...