mirror of
https://github.com/dankamongmen/notcurses
synced 2025-03-09 17:19:03 -04:00
[kitty] pass C=1 to inhibit cursor moves/scrolling from graphics #1733
This commit is contained in:
parent
a6433caeaa
commit
df29cbaf1e
6
NEWS.md
6
NEWS.md
@ -2,8 +2,10 @@ This document attempts to list user-visible changes and any major internal
|
||||
rearrangements of Notcurses.
|
||||
|
||||
* 2.3.3 (not yet released)
|
||||
* `ncvisual_blit()` without a multimedia engine will now properly scale
|
||||
the output according to the provided `ncvisual_options`.
|
||||
* Added the flag `NCVISUAL_OPTION_NOINTERPOLATE` to use non-interpolative
|
||||
scaling in `ncvisual_render()`. `ncvisual_render()` without a multimedia
|
||||
engine will now use this method for any requested scaling (previously,
|
||||
scaling was not performed without a linked multimedia backend).
|
||||
|
||||
* 2.3.2 (2021-06-03)
|
||||
* Fixed a bug affecting certain scalings of `ncvisual` objects created from
|
||||
|
@ -439,7 +439,7 @@ write_kitty_data(FILE* fp, int linesize, int leny, int lenx,
|
||||
//fprintf(stderr, "total: %d chunks = %d, s=%d,v=%d\n", total, chunks, lenx, leny);
|
||||
while(chunks--){
|
||||
if(totalout == 0){
|
||||
*parse_start = fprintf(fp, "\e_Gf=32,s=%d,v=%d,i=%d,a=T,%c=1;",
|
||||
*parse_start = fprintf(fp, "\e_Gf=32,s=%d,v=%d,i=%d,a=T,%C=1;",
|
||||
lenx, leny, sprixelid, chunks ? 'm' : 'q');
|
||||
}else{
|
||||
fprintf(fp, "\e_G%sm=%d;", chunks ? "" : "q=2,", chunks ? 1 : 0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user