Updated camera speed display and bounds (#1251)

This commit is contained in:
Terry Michaels
2021-06-10 17:23:39 -05:00
committed by GitHub
parent ffe913a2d6
commit 6fdf7b01a5
+3 -3
View File
@@ -115,10 +115,10 @@ protected:
float m_prevMoveSpeed;
// Speed combobox/lineEdit settings
double m_minSpeed = 0.1;
double m_minSpeed = 0.01;
double m_maxSpeed = 100.0;
double m_speedStep = 0.1;
int m_numDecimals = 1;
double m_speedStep = 0.01;
int m_numDecimals = 3;
// Speed presets
float m_speedPresetValues[3] = { 0.1f, 1.0f, 10.0f };