if the keyboard is open, 7 lines in horizontal and 23 lines in vertical is too much in order to enter data. This especially affects the Dialer and Text menus. I lowered the numbers.

Signed-off-by: Stacy Harper <contact@stacyharper.net>
master
Peter John Hartman (wart) 3 years ago committed by Stacy Harper
parent 9f6af8abcc
commit b46a347d85
No known key found for this signature in database
GPG Key ID: 5BAC92328B7C5D65
  1. 6
      scripts/core/sxmo_dmenu.sh

@ -31,7 +31,11 @@ case "$(sxmo_wm.sh)" in
exec bemenu --scrollbar autohide -n -w -c -l "$(sxmo_rotate.sh isrotated && printf 5 || printf 15)" "$@"
;;
xorg|dwm)
exec dmenu -c -l "$(sxmo_rotate.sh isrotated && printf 7 || printf 23)" "$@"
if sxmo_keyboard.sh isopen; then
exec dmenu -c -l "$(sxmo_rotate.sh isrotated && printf 2 || printf 5)" "$@"
else
exec dmenu -c -l "$(sxmo_rotate.sh isrotated && printf 7 || printf 23)" "$@"
fi
;;
ssh)
export BEMENU_BACKEND=curses

Loading…
Cancel
Save