mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-04 23:14:47 -04:00
Spectrum frequency ticks MSB truncation: fixed algorithm, settings persistency and added documentation. Fixes #1477
This commit is contained in:
@@ -746,7 +746,7 @@ void ScaleEngine::updateTruncation()
|
||||
for (int i = widthOrder+1; i <= maxOrder; i++)
|
||||
{
|
||||
int irangeMin = floor(m_rangeMin / pow(10, i));
|
||||
int irangeMax = floor(m_rangeMin / pow(10, i));
|
||||
int irangeMax = floor(m_rangeMax / pow(10, i));
|
||||
|
||||
if (irangeMin == irangeMax)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user