Mateusz Paprocki

Results 394 comments of Mateusz Paprocki

> This should be makes the invisible glyph get repainted, correct? It's the **visible** glyph actually. Any rendering is cut short if `renderer.visible` is false.

Actually, @mosc9575 can you update release notes as well (specifically about `geo_feature`).

> 'typing.Unpack' member requires !2, 3.11 Of course it does. We use it in `*.pyi` files thus far, where it works, because it doesn't affect run-time behavior. Unless you want...

Further `patch-doc` replies do use binary messages:

Initially I thought this is a regression, but given the extent of changes I had to make in the PR, it seems this indeed has always been like this, or...

This is configurable in document's config, e.g.: ```py curdoc().config.reconnect_session = False ``` (replace `curdoc()` with your document handle).

Currently we have: ```py class Seq(ContainerProperty[T]): @classmethod def _is_seq_like(cls, value: Any) -> bool: return (isinstance(value, Container | Sized | Iterable) and hasattr(value, "__getitem__") # NOTE: this is what makes it...

> But I wouldn't make the default be null if that means the fix is not "on" by default. `null` means the zoom out gesture is disabled, which when enabled...

I thought zoom undo with double tap was a recent addition, but it was actually added in bokeh 3.0 (PR #12323), so definitely nothing new at this point. I will...