[apps] In graph and regression banner view, decrease the number of

significant digits to avoid weird values as 0.3999999

Change-Id: I2d2b669d92c8ccb760cbff6bd64e8561755be9eb
This commit is contained in:
Émilie Feral
2017-06-15 10:30:31 +02:00
parent 010014a4b5
commit 15892aa7bf
5 changed files with 8 additions and 6 deletions

View File

@@ -4,6 +4,7 @@
class Constant {
public:
constexpr static int LargeNumberOfSignificantDigits = 7;
constexpr static int MediumNumberOfSignificantDigits = 6;
constexpr static int ShortNumberOfSignificantDigits = 4;
};