Skip to content

Commit

Permalink
fix fps value
Browse files Browse the repository at this point in the history
  • Loading branch information
chraibi committed Mar 11, 2024
1 parent 28517c9 commit 9190e8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def read_data(output_file: str) -> pd.DataFrame:
c2.selectbox("Select config file", list(set(st.session_state.all_files)))
)
fps = c3.number_input(
"fps", min_value=8, max_value=32, value=1, help="show every nth frame"
"fps", min_value=1, max_value=32, value=8, help="show every nth frame"
)
if c1.button("Run Simulation"):
if Path(OUTPUT_FILE).exists():
Expand Down

0 comments on commit 9190e8a

Please sign in to comment.