Kaydet (Commit) 4dc71bcf authored tarafından Markus Mohrhard's avatar Markus Mohrhard

use >= as mentioned in the UI, fdo#60798

Change-Id: Iac6737e98eb0961de22036f42634ebad7d42dfcc
üst 22b20e8b
......@@ -910,13 +910,13 @@ ScIconSetInfo* ScIconSetFormat::GetIconSetInfo(const ScAddress& rAddr) const
double nValMax = CalcValue(nMin, nMax, itr);
++itr;
while(itr != end() && nVal > nValMax)
while(itr != end() && nVal >= nValMax)
{
++nIndex;
nValMax = CalcValue(nMin, nMax, itr);
++itr;
}
if(nVal > nValMax)
if(nVal >= nValMax)
++nIndex;
if(mpFormatData->mbReverse)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment