Skip to content

Commit

Permalink
gLV patch for terminal height being reported too small incorrectly
Browse files Browse the repository at this point in the history
  • Loading branch information
rdlrt committed Oct 24, 2023
1 parent e219d6b commit f960580
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/cnode-helper-scripts/gLiveView.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ setTheme() {
# Do NOT modify code below #
######################################

GLV_VERSION=v1.27.5
GLV_VERSION=v1.27.6

PARENT="$(dirname $0)"

Expand Down Expand Up @@ -656,7 +656,7 @@ while true; do
tlines=$(tput lines) # update terminal lines
tcols=$(tput cols) # update terminal columns
done
while [[ ${line} -ge $((tlines - 1)) ]]; do
while [[ ${line} -gt ${tlines} ]]; do
mvPos 2 2
printf "${style_status_3}Terminal height too small!${NC}"
mvPos 4 2
Expand Down

0 comments on commit f960580

Please sign in to comment.