Daniel Althviz Moré

Results 446 comments of Daniel Althviz Moré
trafficstars

I have been checking running the tests with the PySide6 dev wheels at https://download.qt.io/snapshots/ci/pyside/dev/latest/pyside6/. Still getting segfaults with them and a timeout error for the console focus test with `NAPARI_POPUP_TESTS=1`...

Hi there, just in case, I have been playing around for a while using PySide 6.7.0 dev wheels (https://download.qt.io/snapshots/ci/pyside/6.7/latest/pyside6/) and I have been able to run the `napari/_qt/_tests/test_qt_viewer.py::test_add_layer` test without...

Gave this a check from the GUI and seems like what is failing is that the bounding box/transform box is being shown with some translation? I was able to keep...

Maybe naive but seems like changing https://github.com/napari/napari/blob/2102518cc89af553fb3143f8d5fca9eeed97dcd3/napari/_vispy/layers/base.py#L246-L249 to be something like ```python translate_child = ( simplified_transform.translate[dims_displayed] )[::-1] - offset[::-1] ``` Makes things work (at least when checking things from the...

Hi, just in case, I think this is related with OpenGL context sharing. Seems like if you run `QApplication.setAttribute(Qt.AA_ShareOpenGLContexts)` before creating any `QApplication` instance you can run the example code...

Hi there, gave this a check and seems like changing the logic at `_world_to_layer_dims_impl` https://github.com/napari/napari/blob/1ee84b3677f8bb6b6cdd4a97754022003043c180/napari/layers/base/base.py#L1644-L1658 for something like: ```python @staticmethod def _world_to_layer_dims_impl( world_dims: npt.NDArray, ndim_world: int, ndim: int ) ->...

Oh I see, seems like then moving away from `lxml_clean` and using an alternative could be quite worthy :+1:

Hi! Checked this and I was able to embed a `plotly` graph inside a dockwidget!: ### Example code ```python from qtpy import QtCore, QtWidgets QtWidgets.QApplication.setAttribute(QtCore.Qt.AA_ShareOpenGLContexts) import napari viewer = napari.Viewer()...