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

Show QR codes separately so that it looks better on small netbook-like screens

parent 801e1452
No related branches found
No related tags found
No related merge requests found
......@@ -875,25 +875,22 @@ function show_your_email_address {
--backtitle $"Freedombone User Control Panel" \
--msgbox "${msgstrbase}${bdsmailstr}" $dialog_height 100
clear
qr_code_shown=
if [ "$onion_domain" ]; then
clear
echo ''
echo $'Your onion email address:'
echo ''
echo -n "${USER}@${onion_domain}" | qrencode -t UTF8
echo ''
qr_code_shown=1
any_key
fi
if [ "${bdsmail_address}" ]; then
clear
echo ''
echo $'Your bdsmail address:'
echo ''
echo -n "${bdsmail_address}" | qrencode -t UTF8
echo ''
qr_code_shown=1
fi
if [ $qr_code_shown ]; then
any_key
fi
}
......
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