From ed317902ca66603bf77b74f0b711ed25737c2e95 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Sun, 21 Apr 2024 10:36:36 +0200 Subject: [PATCH] custom min/max have priority #1703 --- src/emsdevice.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/emsdevice.cpp b/src/emsdevice.cpp index b461ba99f..4a2ad61a7 100644 --- a/src/emsdevice.cpp +++ b/src/emsdevice.cpp @@ -742,6 +742,7 @@ void EMSdevice::set_minmax(const void * value_p, int16_t min, uint32_t max) { if (dv.value_p == value_p) { dv.min = min; dv.max = max; + dv.set_custom_minmax(); // custom priority return; } }