diff --git a/src/GraphControl/Control/Equation.cpp b/src/GraphControl/Control/Equation.cpp index f572ce7de..838a1bacd 100644 --- a/src/GraphControl/Control/Equation.cpp +++ b/src/GraphControl/Control/Equation.cpp @@ -404,7 +404,14 @@ namespace GraphControl wstring Equation::GetRequestHeader() { wstring expr{ Expression->Data() }; - if (expr.find(L">=<") != wstring::npos) + + // Check for unicode characters of less than, less than or equal to, greater than and greater than or equal to. + if (expr.find(L">><") != wstring::npos || expr.find(L"><<") != wstring::npos || expr.find(L">≥<") != wstring::npos + || expr.find(L">≤<") != wstring::npos) + { + return L"plotIneq2D"s; + } + else if (expr.find(L">=<") != wstring::npos) { return L"plotEq2d"s; }