Skip to content

Commit d545c76

Browse files
Merge pull request #367 from K3D-tools/devel
plot.minimum_fps - adaptive resolution - limit max downscale
2 parents 2b1cf61 + d68c49d commit d545c76

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

k3d/headless.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def ping():
5858
def generate():
5959
current_plot_params = self.k3d_plot.get_plot_params()
6060
plot_diff = {k: current_plot_params[k] for k in current_plot_params.keys()
61-
if current_plot_params[k] != self.synced_plot[k]}
61+
if current_plot_params[k] != self.synced_plot[k] and k != 'minimumFps'}
6262

6363
objects_diff = {}
6464

k3d/test/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def pytest_sessionstart(session):
2929
before performing collection and entering the run test loop.
3030
"""
3131
pytest.plot = k3d.plot(screenshot_scale=1.0, antialias=2, camera_auto_fit=False,
32-
minimum_fps=-1, colorbar_object_id=0)
32+
colorbar_object_id=0)
3333
print(pytest.plot.get_static_path())
3434
pytest.headless = k3d_remote(pytest.plot, get_headless_driver())
3535
pytest.headless.browser.execute_script("window.randomMul = 0.0;")

0 commit comments

Comments
 (0)