I am trying to create a pop up window with zenity to get some inputs from the user.
parameters=$(zenity --forms --title="Add Parameters" --separator="," --add-entry="Dimensionality" --add-entry="float" --add-entry="Interpolation" --add-entry="winsorize image intensities" --add-entry="Use histogram matching" --add-entry="Num_transform" --add-entry="Convergence" --add-entry="Metric" --add-entry="Shrink Factors" --add-entry="Smoothing sigmas")
So now i want these fields to have default values in order to be easier for the user. I tried the --entry-text
but i'm getting the error --entry-text is not supported for this dialogue
.
Any ideas?