summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/scopekit/display_state.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scopekit/display_state.py b/src/scopekit/display_state.py
index 793bc4c..923eb6c 100644
--- a/src/scopekit/display_state.py
+++ b/src/scopekit/display_state.py
@@ -136,7 +136,7 @@ def _create_time_formatter(
elif display_scale >= np.float32(1e3): # milliseconds
return f"{x:.1f}"
else: # seconds
- return f"{x:.3f}"
+ return f"{x:.0f}"
return FuncFormatter(formatter)