You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: server/pvw-visualizer.py
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -139,6 +139,7 @@ def add_arguments(parser):
139
139
parser.add_argument("--data", default=os.getcwd(), help="path to data directory to list, or else multiple directories given as 'name1=path1|name2=path2|...'", dest="path")
140
140
parser.add_argument("--load-file", default=None, help="File to load if any based on data-dir base path", dest="file")
141
141
parser.add_argument("--color-palette-file", default=None, help="File to load to define a set of color map", dest="palettes")
142
+
parser.add_argument("--no-built-in-palette", help="If provided, disables built-in color maps", action="store_true", dest="hide_built_in_color_maps")
142
143
parser.add_argument("--ds-host", default=None, help="Hostname to connect to for DataServer", dest="dsHost")
143
144
parser.add_argument("--ds-port", default=11111, type=int, help="Port number to connect to for DataServer", dest="dsPort")
144
145
parser.add_argument("--rs-host", default=None, help="Hostname to connect to for RenderServer", dest="rsHost")
0 commit comments