From 887601cc2206de9f81addb6240bcd23f66e3648c Mon Sep 17 00:00:00 2001 From: Henry Wilkinson Date: Sat, 5 Jun 2021 18:20:53 -0400 Subject: [PATCH] Match Nuke's default for centerlineWidth Natron's default is currently 1px, Nuke's is 3px. Seeing as all the other values match Nuke it would make sense for this one to match it as well? --- CheckerBoard/CheckerBoard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CheckerBoard/CheckerBoard.cpp b/CheckerBoard/CheckerBoard.cpp index bfe295e7..c1899cb5 100644 --- a/CheckerBoard/CheckerBoard.cpp +++ b/CheckerBoard/CheckerBoard.cpp @@ -718,7 +718,7 @@ CheckerBoardPluginFactory::describeInContext(ImageEffectDescriptor &desc, DoubleParamDescriptor* param = desc.defineDoubleParam(kParamCenterLineWidth); param->setLabel(kParamCenterLineWidthLabel); param->setHint(kParamCenterLineWidthHint); - param->setDefault(1); + param->setDefault(3); param->setRange(0., DBL_MAX); param->setDisplayRange(0, 10); param->setAnimates(true); // can animate