mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-08 11:52:32 +01:00
easydialog: allow form fields input to grow up to 100 chars (Closes: #562249)
This commit is contained in:
parent
34d0d30593
commit
6606cce445
@ -5,6 +5,9 @@ version 0.9.7 -- UNRELEASED
|
||||
. add 'when = manual' option, that can be used in the global config
|
||||
file or in a given backup action file. Thanks Tuomas Jormola for the
|
||||
preliminary patch (Closes: #511299)
|
||||
lib changes
|
||||
easydialog:
|
||||
. Allow form fields input to grow up to 100 chars (Closes: #562249)
|
||||
handler changes
|
||||
ldap:
|
||||
. Use gzip's --rsyncable option.
|
||||
|
@ -240,7 +240,7 @@ formDisplay() {
|
||||
for ((i=0; i < $_form_items ; i++)); do
|
||||
label=${_form_labels[$i]}
|
||||
text=${_form_text[$i]}
|
||||
echo -n -e " $label $xpos 1 '$text' $xpos $max_length 30 30"
|
||||
echo -n -e " $label $xpos 1 '$text' $xpos $max_length 30 100"
|
||||
let "xpos += _form_gap"
|
||||
done
|
||||
) | xargs $DIALOG 2> $temp
|
||||
|
Loading…
Reference in New Issue
Block a user