PythonPan
PythonPan
change the ```python3 half_bar_right = "╸" half_bar_left = "╺" bar = "━" ``` in `.venv\Lib\site-packages\textual\renderables\bar.py`
Need more details, I can't reproduce it.
I set a print in `storage.py`,And I found `starlette.middleware.base._CachedRequest object` becomes None during first visiting page.   Then I look it up in starlette's repository,similar question is founded: `RuntimeError("No...
It is a little similar to #3217 . I change `LOOPBACK = None` in `.venv\Lib\site-packages\nicegui\elements\codemirror.py` to `LOOPBACK = True`. It works as expected. Following code shows that `_props['value']` has changed,...
@falkoschindler I reproduce it, I use windows pc: ```python3 from nicegui import ui ui.video('test.mp4') ui.video('test.mp4') ui.run(native=True,reload=False) ```
For 1, it works well, no errros. For 2, it reports this: ``` Exception in callback _ProactorBasePipeTransport._call_connection_lost(None) handle: Traceback (most recent call last): File "D:\Programs\Python\Python312\Lib\asyncio\events.py", line 88, in _run self._context.run(self._callback,...
BTW, run the following code, it works well in browser. ```python3 from nicegui import ui ui.video('test.mp4') ui.video('test.mp4') ui.run(native=False,reload=False) ``` But use the pywebview to view it, it will report error:...
I installed starlette == 0.47.2 , The environment is: ``` Package Version ------------------ ----------- aiofiles 24.1.0 aiohappyeyeballs 2.6.1 aiohttp 3.12.14 aiosignal 1.4.0 annotated-types 0.7.0 anyio 4.9.0 attrs 25.3.0 bidict 0.23.1...
Yes, it works well, no more errors after I restart it cleanly.