diff options
| author | Markus Rinne <markus.ka.rinne@gmail.com> | 2024-11-25 13:31:56 +0200 | 
|---|---|---|
| committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2024-12-06 13:42:50 +0100 | 
| commit | 6009e6e25bdff9548f085e9ae562b1ca305d3a0b (patch) | |
| tree | ebd067b5edc51f4a45cb2eccf84e4fdaa9dc25b5 | |
| parent | a0274bc20e11d8672bb2953fdd1d3010c0e708c5 (diff) | |
| download | st-transparency-6009e6e25bdff9548f085e9ae562b1ca305d3a0b.tar.gz st-transparency-6009e6e25bdff9548f085e9ae562b1ca305d3a0b.tar.xz st-transparency-6009e6e25bdff9548f085e9ae562b1ca305d3a0b.zip  | |
Clear screen: Fix edge case
With sequence \e[1J, if cursor is on second line, clear the first line.
| -rw-r--r-- | st.c | 2 | 
1 files changed, 1 insertions, 1 deletions
@@ -1705,7 +1705,7 @@ csihandle(void)  			}  			break;  		case 1: /* above */ -			if (term.c.y > 1) +			if (term.c.y > 0)  				tclearregion(0, 0, term.col-1, term.c.y-1);  			tclearregion(0, term.c.y, term.c.x, term.c.y);  			break;  | 
