Browse Source

Use editbox

Bob Mottram 7 years ago
parent
commit
75b72cb787
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      src/freedombone-controlpanel-user

+ 3
- 3
src/freedombone-controlpanel-user View File

@@ -437,9 +437,9 @@ function refresh_gpg_keys {
437 437
 function add_gpg_key {
438 438
     data=$(tempfile 2>/dev/null)
439 439
     trap "rm -f $data" 0 1 2 5 15
440
-    dialog --title $"Add someone's PGP/GPG key" \
440
+    dialog --title $"Enter email address, Key ID or full key below" \
441 441
            --backtitle $"Freedombone User Control Panel" \
442
-           --inputbox $"Enter their email address, Key ID or full key below" 8 999999 2>$data
442
+           --editbox $data 8 60
443 443
     sel=$?
444 444
     case $sel in
445 445
         0)
@@ -459,7 +459,6 @@ function add_gpg_key {
459 459
                     address_is_valid=1
460 460
                 fi
461 461
 
462
-
463 462
                 if [ $address_is_valid ]; then
464 463
                     clear
465 464
                     if [[ "$ADD_EMAIL_ADDRESS" == *"$publicstr"* ]]; then
@@ -479,6 +478,7 @@ function add_gpg_key {
479 478
             fi
480 479
             ;;
481 480
     esac
481
+    rm $data
482 482
 }
483 483
 
484 484
 function remove_gpg_key {