mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-13 17:05:59 -06:00
#1635 Use capital 'E' in scientific notation
This commit is contained in:
parent
53ee396c03
commit
db65917822
@ -251,7 +251,7 @@ QString RifEclipseDataTableFormatter::format(double num, RifEclipseOutputTableDo
|
||||
case RifEclipseOutputTableDoubleFormat::FLOAT:
|
||||
return QString("%1").arg(num, 0, 'f', doubleFormat.width);
|
||||
case RifEclipseOutputTableDoubleFormat::SCIENTIFIC:
|
||||
return QString("%1").arg(num, 0, 'e');
|
||||
return QString("%1").arg(num, 0, 'E');
|
||||
default:
|
||||
return QString("%1");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user