Splines
Splines
Nice workaround. But compared to copying the object from another slide and pasting it into a new one, then editing it, it's probably not quicker than filling the color with...
Wow, you're quick, thank you so much for the improvements. The default shape color works like a charm! Also see my feedback on #66 for the file path.
1) Yeah, that's not so important to me either. As you said: typically, one "works on a single presentation for a while". Just being able to set a global default...
Thank you, works great and exactly what I needed! The error when an invalid file path is set and you click on `Generate from default .tex file` is currently: >...
> It seems to me that setting the default Temp folder and load file path (as in https://github.com/Jonathan-LeRoux/IguanaTex/issues/66) effectively implement this, apart from two differences: [...] I think a third...
Just as an update: in the meantime I've written a custom [ModuleLoader](https://github.com/3b1b/manim/blob/master/manimlib/module_loader.py#L15) for Manim that we use in https://github.com/3b1b/manim/pull/2278 to implement our custom autoreload feature due to the limitation of...
Mmh, according to the logs, `hostapd` seems to have started fine. Did you set the country code in [`./access-point/hostapd.conf`](https://github.com/Splines/raspi-captive-portal/blob/main/access-point/hostapd.conf) to the country you're living in? You may also have to...
Glad it worked for you ;)
Thanks for clarifying. If by `set_position` you mean [`set_location`](https://docs.pyglet.org/en/latest/modules/window.html#pyglet.window.Window.set_location), this doesn't work unfortunately, e.g. this has the same "drifting" problem: ```py def focus(self): location = self._window.get_location() self._window.set_visible(False) self._window.set_visible(True) self._window.set_location(*location) ```...
Update: `self._window.set_location(100, 100)` does work, but only as stand-alone statement (and if the coordinates are different to `(0, 0)`. `set_location()` still has _no effect_ if I call `set_visible()` beforehand as...