mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
Fix DECRPM reporting
The DECRQM uses `p` to query, but the reply uses `y`. Fixes #7397.
This commit is contained in:
parent
5adfc4fb00
commit
28d913cfd0
1 changed files with 2 additions and 2 deletions
|
@ -1922,7 +1922,7 @@ impl<T: EventListener> Handler for Term<T> {
|
||||||
};
|
};
|
||||||
|
|
||||||
self.event_proxy.send_event(Event::PtyWrite(format!(
|
self.event_proxy.send_event(Event::PtyWrite(format!(
|
||||||
"\x1b[?{};{}$p",
|
"\x1b[?{};{}$y",
|
||||||
mode.raw(),
|
mode.raw(),
|
||||||
state as u8,
|
state as u8,
|
||||||
)));
|
)));
|
||||||
|
@ -1979,7 +1979,7 @@ impl<T: EventListener> Handler for Term<T> {
|
||||||
};
|
};
|
||||||
|
|
||||||
self.event_proxy.send_event(Event::PtyWrite(format!(
|
self.event_proxy.send_event(Event::PtyWrite(format!(
|
||||||
"\x1b[{};{}$p",
|
"\x1b[{};{}$y",
|
||||||
mode.raw(),
|
mode.raw(),
|
||||||
state as u8,
|
state as u8,
|
||||||
)));
|
)));
|
||||||
|
|
Loading…
Reference in a new issue