From b93fe0b2b2759490a6a42f4e349f9125847a2994 Mon Sep 17 00:00:00 2001 From: Stephanie Anderl <46726333+sanderl@users.noreply.github.com> Date: Thu, 2 Apr 2020 12:52:52 -0700 Subject: [PATCH] Update default min/max values for variables (#1146) --- src/GraphControl/Models/Variable.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/GraphControl/Models/Variable.h b/src/GraphControl/Models/Variable.h index 536edef2..dd3fbb97 100644 --- a/src/GraphControl/Models/Variable.h +++ b/src/GraphControl/Models/Variable.h @@ -18,8 +18,8 @@ public Variable(double value) : m_Value{ value } , m_Step{ 0.1 } - , m_Min{ 0.0 } - , m_Max{ 2.0 } + , m_Min{ -5.0 } + , m_Max{ 5.0 } { } };