mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
MeasureCalc: Only report "HighBound" error message after initial update
This commit is contained in:
parent
9c2d75ce69
commit
cd140ff0f6
@ -106,8 +106,13 @@ void MeasureCalc::ReadOptions(ConfigParser& parser, const WCHAR* section)
|
||||
{
|
||||
// Reset bounds if |m_LowBound| is greater than or equal to |m_HighBound|
|
||||
if (m_LowBound >= m_HighBound)
|
||||
{
|
||||
// Only report an error after the first update cycle
|
||||
// For cases where "HighBound=[SomeMeasure]", and [SomeMeasure] would initially equal 0
|
||||
if (m_Initialized)
|
||||
{
|
||||
LogErrorF(this, L"\"LowBound\" (%i) must be less then \"HighBound\" (%i)", m_LowBound, m_HighBound);
|
||||
}
|
||||
|
||||
m_LowBound = DEFAULT_LOWER_BOUND;
|
||||
m_HighBound = DEFAULT_UPPER_BOUND;
|
||||
|
Loading…
Reference in New Issue
Block a user