From d90918e19db940fb74c8e626467fb0a824a86963 Mon Sep 17 00:00:00 2001
From: Bob Mottram <bob@robotics.uk.to>
Date: Sun, 3 Jan 2016 12:42:59 +0000
Subject: [PATCH] Menu position

---
 src/freedombone-controlpanel | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/freedombone-controlpanel b/src/freedombone-controlpanel
index 1feb97e1d..8575f87f4 100755
--- a/src/freedombone-controlpanel
+++ b/src/freedombone-controlpanel
@@ -126,7 +126,7 @@ function show_domains {
     echo -n -e "$(pad_string 'ICANN')"
     echo -n -e "$(pad_string 'Tor')"
     echo ''
-    echo '-------------------------------------------------------------------------'
+    echo '--------------------------------------------------------------------------'
     if grep -q "Email onion domain" $COMPLETION_FILE; then
         echo -n -e "$(pad_string 'Email')"
         echo -n -e "$(pad_string ' ')"
@@ -206,7 +206,7 @@ function show_users {
     echo -n -e "$(pad_string 'SIP ext')"
     echo -n -e "$(pad_string 'Data')"
     echo ''
-    echo '-------------------------------------------------------------------------'
+    echo '--------------------------------------------------------------------------'
     for d in /home/*/ ; do
         USRNAME=$(echo "$d" | awk -F '/' '{print $3}')
         if [[ $USRNAME != "git" ]]; then
@@ -1349,8 +1349,8 @@ function menu_top_level {
         dialog --backtitle $"Freedombone Control Panel" \
                --title $"Control Panel" \
                --radiolist $"Choose an operation:" 25 70 18 \
-               1 $"Backup and Restore" off \
-               2 $"About this system" off \
+               1 $"About this system" off \
+               2 $"Backup and Restore" off \
                3 $"Reset Tripwire" off \
                4 $"Logging on/off" off \
                5 $"Ping enable/disable" off \
@@ -1373,8 +1373,8 @@ function menu_top_level {
             255) exit 1;;
         esac
         case $(cat $data) in
-            1) menu_backup_restore;;
-            2) show_about;;
+            1) show_about;;
+            2) menu_backup_restore;;
             3) reset_tripwire;;
             4) logging_on_off;;
             5) ping_enable_disable;;
-- 
GitLab