Skip to content
Snippets Groups Projects
Commit 0eee43b1 authored by Bob Mottram's avatar Bob Mottram
Browse files

Make inputbox wider to accomodate longer names

parent 6078716b
No related branches found
No related tags found
No related merge requests found
......@@ -625,7 +625,7 @@ function choose_full_name {
data=$(tempfile 2>/dev/null)
trap "rm -f $data" 0 1 2 5 15
dialog --backtitle $"Freedombone Configuration" \
--inputbox $"Your full name (or nick)" 10 30 "$(grep 'MY_NAME' temp.cfg | awk -F '=' '{print $2}')" 2> $data
--inputbox $"Your full name (or nick)" 10 50 "$(grep 'MY_NAME' temp.cfg | awk -F '=' '{print $2}')" 2> $data
sel=$?
case $sel in
0) possible_name=$(cat $data)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment