Author: dteske
Date: Mon Dec 12 20:49:49 2016
New Revision: 309939
URL: https://svnweb.freebsd.org/changeset/base/309939

Log:
  Fix incorrect use of provided API
  The result of which was incorrectly sized menu dialogs

Modified:
  head/usr.sbin/bsdinstall/scripts/wlanconfig

Modified: head/usr.sbin/bsdinstall/scripts/wlanconfig
==============================================================================
--- head/usr.sbin/bsdinstall/scripts/wlanconfig Mon Dec 12 20:43:09 2016        
(r309938)
+++ head/usr.sbin/bsdinstall/scripts/wlanconfig Mon Dec 12 20:49:49 2016        
(r309939)
@@ -108,9 +108,8 @@ dialog_country_select()
                }
        }' | sort -k 2 | tr '\n' ' ' )
 
-       f_dialog_menu_size height width rows \"Regdomain selection\" \
-               \"$DIALOG_BACKTITLE\" \"Select your regdomain.\" \
-               \"\" $regdomains
+       f_dialog_menu_size height width rows "Regdomain selection" \
+               "$DIALOG_BACKTITLE" "Select your regdomain." "" $regdomains
        regdomain=$( sh -c "$DIALOG \
                --backtitle \"$DIALOG_BACKTITLE\" \
                --title \"Regdomain selection\" \
@@ -122,9 +121,8 @@ dialog_country_select()
                $height $width $rows $regdomains"
        )
 
-       f_dialog_menu_size height width rows \"Country selection\" \
-           \"$DIALOG_BACKTITLE\" \"Select your country.\" \
-           \"\" $countries
+       f_dialog_menu_size height width rows "Country selection" \
+               "$DIALOG_BACKTITLE" "Select your country." "" $countries
        country=$( sh -c "$DIALOG \
                --backtitle \"$DIALOG_BACKTITLE\" \
                --title \"Country selection\" \
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to