Roger Dahl

Results 28 comments of Roger Dahl

Thank you for testing. I really appreciate it! I'm using Bokmål. Is it possible for the add-on to indiciate in some way which dictionary is currently in use? I tried...

Thanks again for looking into this and for the background information. I see that it's pretty limited what you can do from an add-on. Ability to select multiple languages really...

Try to reduce the SDL GL context (4.6) to match the NanoVG context (3.x). ``` SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 4); SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 6); ``` and ``` NVGcontext* vg = nvgCreateGL3(NVG_ANTIALIAS | NVG_STENCIL_STROKES | NVG_DEBUG);...

@BrodaJarek Sorry, those were just a copy of your lines. I think changing major and minor 4.6 to 3.1 will work. I don't understand Polish, unfortunately. I think it's best...

Sorry to hear that, @raghavk92 . Hope you get better soon.

@norrinr Which type of device are you controlling, and what is the reason you can't simply configure the screensaver and sleep mode to your liking on the device? I've done...

I'm just trying out the filelock module myself. In your function, what happens if a file that would have triggered the check that raises `OSError()` is created elsewhere between the...

@xrmx This section is still relevant. Any chance of getting it merged?

Thank you for considering the suggestion. Creating a new semaphore in the context manager is a good way to create a critical section, so it might not be that much...

I'm good with that decision. Yes, feel free to leave the ticket open. A description of the issue together with some example code that unlinks in `finally` might be the...