From a90f937a9bcd3b23ce31a84ccd33a5b166f78b7a Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Sun, 11 Jul 2021 19:23:20 -0400 Subject: [PATCH] ENH use sameplfreq in plot --- core | 2 +- drawing/Common.lua | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/core b/core index b368c82..a8c5135 160000 --- a/core +++ b/core @@ -1 +1 @@ -Subproject commit b368c82d8812148f3d94a2f2027fbb8ee7996438 +Subproject commit a8c51359add259a803eb7d8c1f3f63c88208db9d diff --git a/drawing/Common.lua b/drawing/Common.lua index f5aba34..2d4544d 100644 --- a/drawing/Common.lua +++ b/drawing/Common.lua @@ -116,6 +116,7 @@ M.percent_label_style = _G_Widget_.label_style( M.initThemedLabelPlot = function(x, y, w, h, label_style) return _G_Widget_.LabelPlot( _G_Widget_.make_box(x, y, w, h), + 1 / _G_INIT_DATA_.UPDATE_INTERVAL, M.default_plot_style, label_style ) @@ -170,6 +171,7 @@ M.base_2_scale_data = _G_Widget_.scale_data(2, 1, 0.9) M.initThemedScalePlot = function(x, y, w, h, f) return _G_Widget_.ScalePlot( _G_Widget_.make_box(x, y, w, h), + 1 / _G_INIT_DATA_.UPDATE_INTERVAL, M.default_plot_style, _G_Widget_.label_style( _G_Patterns_.INACTIVE_TEXT_FG,