Skip to content

Commit

Permalink
Merge pull request #367 from K3D-tools/devel
Browse files Browse the repository at this point in the history
plot.minimum_fps - adaptive resolution - limit max downscale
  • Loading branch information
artur-trzesiok authored Jul 26, 2022
2 parents 2b1cf61 + d68c49d commit d545c76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion k3d/headless.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def ping():
def generate():
current_plot_params = self.k3d_plot.get_plot_params()
plot_diff = {k: current_plot_params[k] for k in current_plot_params.keys()
if current_plot_params[k] != self.synced_plot[k]}
if current_plot_params[k] != self.synced_plot[k] and k != 'minimumFps'}

objects_diff = {}

Expand Down
2 changes: 1 addition & 1 deletion k3d/test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def pytest_sessionstart(session):
before performing collection and entering the run test loop.
"""
pytest.plot = k3d.plot(screenshot_scale=1.0, antialias=2, camera_auto_fit=False,
minimum_fps=-1, colorbar_object_id=0)
colorbar_object_id=0)
print(pytest.plot.get_static_path())
pytest.headless = k3d_remote(pytest.plot, get_headless_driver())
pytest.headless.browser.execute_script("window.randomMul = 0.0;")
Expand Down

0 comments on commit d545c76

Please sign in to comment.