mirror of
https://github.com/EdgeTX/edgetx.git
synced 2025-07-24 00:35:14 +03:00
Fixes #2534
This commit is contained in:
parent
7e7a762617
commit
7e44eab63c
1 changed files with 6 additions and 2 deletions
|
@ -787,11 +787,15 @@ QString LogicalSwitchData::toString(const ModelData & model, const GeneralSettin
|
|||
res = "|" + res + "|";
|
||||
else if (func == LS_FN_DAPOS)
|
||||
res = "|d(" + res + ")|";
|
||||
else if (func == LS_FN_DPOS) result = "d(" + res + ")";
|
||||
else if (func == LS_FN_DPOS)
|
||||
res = "d(" + res + ")";
|
||||
result += res;
|
||||
|
||||
if (func == LS_FN_APOS || func == LS_FN_VPOS || func == LS_FN_DPOS || func == LS_FN_DAPOS)
|
||||
result += " > ";
|
||||
else if (func == LS_FN_EQUAL || func == LS_FN_VEQUAL)
|
||||
result += " = ";
|
||||
else if (func == LS_FN_NEQUAL)
|
||||
result += " != ";
|
||||
else if (func == LS_FN_ANEG || func == LS_FN_VNEG)
|
||||
result += " < ";
|
||||
else if (func == LS_FN_VALMOSTEQUAL)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue