superlou
superlou
I was testing in a pure terminal, both Powershell and CMD had similar behavior (as well as Microsoft Terminal running Powershell).
@frankhuurman, I don't think it's filewatcher, only because when I save, it immediately pops up with the notification that a file changed. The issues happen in the delay after. Does...
Just got a chance to try it with logging disabled. No change unfortunately. Was really hoping it was something straightforward. ```py from nicegui import ui ui.button("Button 1") ui.button("Button 2") ui.button("Button...
I used uv to test with Python 3.11.9, and it's the same behavior. WatchFiles detects changes immediately, but it takes about 15 seconds to respond in the browser.
I'm not sure this is the root cause, but is there a way to try the solution suggested in https://github.com/encode/uvicorn/issues/1972#issuecomment-2420335831 to see if it's something related to filewatches in uvicorn?...
Unfortunately, when I edit the test file (same process as earlier by commenting/un-commenting buttons) on Windows, either the page doesn't update or I get a permissions error: ``` PS C:\workspace\nicegui-test>...
The problem still generally persists with version 2.11, though with the very simple test example I've been doing, I just noticed that if I wait for the browser to autorefresh,...
> That's very unfortunate, [@superlou](https://github.com/superlou), [@jdavidremm](https://github.com/jdavidremm) and [@collisee](https://github.com/collisee)! It would be great if anyone with a Windows system could reproduce the problem and dig deeper to find the underlying cause....
> [@superlou](https://github.com/superlou) To remove NiceGUI from the equation, I like to use the following minimal FastAPI/Uvicorn example: > ... > You can store this as main.py and run via `python3...
The RemoteTransform approach seems workable for scenes where there is only one AnimatableBody that must move relative to another node (the PathFollow3D in the original issue), but in a scene...