From e5ac6bd0dc454e5f372c88a41ecb3559ecfdbd34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Candice=20Bent=C3=A9jac?= Date: Thu, 5 Sep 2024 19:03:36 +0200 Subject: [PATCH] [bin] `meshroom_newNodeType`: Replace `uid=` with `invalidate=` --- bin/meshroom_newNodeType | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/bin/meshroom_newNodeType b/bin/meshroom_newNodeType index 7ba37b4e..6737cb87 100755 --- a/bin/meshroom_newNodeType +++ b/bin/meshroom_newNodeType @@ -178,7 +178,7 @@ for cmdLineArg in cmdLineArgs: isOutput = 'output' in cmdLineArgLower or 'out' in namesLower isInt = is_int(value) isFloat = is_float(value) - uid = '[]' if isOutput else '[0]' + uid = False if isOutput else True argStr = None if isBool: @@ -188,7 +188,7 @@ for cmdLineArg in cmdLineArgs: label='{label}', description='''{description}''', value={value}, - uid={uid}, + invalidate={uid}, ),""".format( name=longName, label=convertToLabel(longName), @@ -204,7 +204,7 @@ for cmdLineArg in cmdLineArgs: label='{label}', description='''{description}''', value={value}, - uid={uid}, + invalidate={uid}, ),""".format( name=longName, label=convertToLabel(longName), @@ -222,7 +222,7 @@ for cmdLineArg in cmdLineArgs: value={value}, values={values}, exclusive={exclusive}, - uid={uid}, + invalidate={uid}, ),""".format( name=longName, label=convertToLabel(longName), @@ -240,7 +240,7 @@ for cmdLineArg in cmdLineArgs: description='''{description}''', value={value}, range={range}, - uid={uid}, + invalidate={uid}, ),""".format( name=longName, label=convertToLabel(longName), @@ -257,7 +257,7 @@ for cmdLineArg in cmdLineArgs: description='''{description}''', value={value}, range={range}, - uid={uid}, + invalidate={uid}, ),""".format( name=longName, label=convertToLabel(longName), @@ -273,7 +273,7 @@ for cmdLineArg in cmdLineArgs: label='{label}', description='''{description}''', value={value}, - uid={uid}, + invalidate={uid}, ),""".format( name=longName, label=convertToLabel(longName),