diff options
author | Xiao Pan <xyz@flylightning.xyz> | 2025-05-07 00:47:02 -0700 |
---|---|---|
committer | Xiao Pan <xyz@flylightning.xyz> | 2025-05-07 00:47:02 -0700 |
commit | 4b15baeeacb69db062bd42a5aa97ed5159067b78 (patch) | |
tree | 0ae316fc2150ca037b0c4ec0498c657b39d38aa6 /remote_plot.c | |
parent | fe56d7ed434b80b7a61d8ab50bb0276f9bfb8b92 (diff) |
temp max 100 instead for better showcase
Diffstat (limited to 'remote_plot.c')
-rw-r--r-- | remote_plot.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/remote_plot.c b/remote_plot.c index f6dc18e..f18862b 100644 --- a/remote_plot.c +++ b/remote_plot.c @@ -607,7 +607,9 @@ static void draw_function (GtkDrawingArea *area, { // according to .dbc file ymin=0; - ymax=255; + //ymax=255; + // for better showcase, use 100 instead + ymax=100; } // Create a labelled box to hold the plot. |