Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/cfclient/ui/tabs/lighthouse_tab.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,10 @@ class Plot3dLighthouse(scene.SceneCanvas):
TEXT_OFFSET = np.array((0.0, 0, 0.25))

def __init__(self):
Comment thread
ArisMorgens marked this conversation as resolved.
scene.SceneCanvas.__init__(self, keys=None)
# Note: autoswap is disabled since Qt's QOpenGLWidget path already presents
# the FBO; enabling vispy autoswap here would cause a redundant swap and
# eglSwapBuffers warnings.
scene.SceneCanvas.__init__(self, keys=None, autoswap=False)
self.unfreeze()

self._view = self.central_widget.add_view()
Expand Down
Loading