From: Andre Noll Date: Tue, 5 Jul 2022 22:13:21 +0000 (+0200) Subject: gui: Don't show items in menus. X-Git-Url: http://git.tuebingen.mpg.de/?p=gsu.git;a=commitdiff_plain;h=5dfe50002b64c19dab9625360165a3415f03eb99 gui: Don't show items in menus. The numbers at the right of each item are of little value. This patch gets rid of them, which also simplifies the code a bit. --- diff --git a/gui b/gui index e9eb1a8..72ddb28 100644 --- a/gui +++ b/gui @@ -97,15 +97,13 @@ _gsu_menu() { local header="${1:-root}" local items="$2" - local i opts num=0 + local geom _get_geometry - opts="$result 16" - for i in $items; do - let num++ - opts+=" $i $num" - done - result="$(dialog --menu "$gsu_banner_txt ($header)" $opts 3>&1 1>&2 2>&3 3>&-)" + geom=$result + result="$(dialog --no-lines --no-items --menu \ + "$gsu_banner_txt ($header)" \ + $geom 16 $items 3>&1 1>&2 2>&3 3>&-)" _set_dialog_ret $? }