Fix scroll region set CSI (no parameters should reset region)
This commit is contained in:
parent
142b526a97
commit
c62bba9e15
@ -37,6 +37,7 @@
|
|||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include "common.h"
|
||||||
#include "terminal.h"
|
#include "terminal.h"
|
||||||
#include "terminal_handlers.h"
|
#include "terminal_handlers.h"
|
||||||
|
|
||||||
@ -500,6 +501,10 @@ int guac_terminal_csi(guac_terminal* term, char c) {
|
|||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
/* c: Identify */
|
||||||
|
case 'c':
|
||||||
|
guac_terminal_write_all(term->stdin_pipe_fd[1], "\x1B[?6c", 5);
|
||||||
|
break;
|
||||||
|
|
||||||
/* d: Move cursor, current col */
|
/* d: Move cursor, current col */
|
||||||
case 'd':
|
case 'd':
|
||||||
@ -575,8 +580,19 @@ int guac_terminal_csi(guac_terminal* term, char c) {
|
|||||||
|
|
||||||
/* r: Set scrolling region */
|
/* r: Set scrolling region */
|
||||||
case 'r':
|
case 'r':
|
||||||
term->scroll_start = argv[0]-1;
|
|
||||||
term->scroll_end = argv[1]-1;
|
/* If parameters given, set region */
|
||||||
|
if (argc == 2) {
|
||||||
|
term->scroll_start = argv[0]-1;
|
||||||
|
term->scroll_end = argv[1]-1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Otherwise, reset scrolling region */
|
||||||
|
else {
|
||||||
|
term->scroll_start = 0;
|
||||||
|
term->scroll_end = term->term_height - 1;
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* Warn of unhandled codes */
|
/* Warn of unhandled codes */
|
||||||
|
Loading…
Reference in New Issue
Block a user