Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Dec 2016 20:49:49 +0000 (UTC)
From:      Devin Teske <dteske@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r309939 - head/usr.sbin/bsdinstall/scripts
Message-ID:  <201612122049.uBCKnnXM022152@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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\" \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612122049.uBCKnnXM022152>