Add a few more tiny scales. Allow user to input doubles in preferences.

This commit is contained in:
jonjenssen
2023-03-10 18:32:09 +01:00
committed by jonjenssen
parent 4f9cbe8e97
commit e70cc85db6
4 changed files with 20 additions and 11 deletions

View File

@@ -355,5 +355,5 @@ QString RiaDefines::stringListSeparator()
//--------------------------------------------------------------------------------------------------
std::vector<double> RiaDefines::viewScaleOptions()
{
return { 0.05, 0.1, 0.2, 0.5, 1.0, 2.0, 3.0, 4.0, 5.0, 10.0, 15.0, 20.0, 50.0 };
return { 0.005, 0.01, 0.05, 0.1, 0.2, 0.5, 1.0, 2.0, 3.0, 4.0, 5.0, 10.0, 15.0, 20.0, 50.0 };
}