summaryrefslogtreecommitdiffstats
path: root/src/screen.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/screen.c')
-rw-r--r--src/screen.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/screen.c b/src/screen.c
index e031e3e..3e3f2ab 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -822,6 +822,16 @@ void vt100_screen_reset_mouse_reporting_button_motion(VT100Screen *vt)
vt->mouse_reporting_button_motion = 0;
}
+void vt100_screen_set_mouse_reporting_any_motion(VT100Screen *vt)
+{
+ vt->mouse_reporting_any_motion = 1;
+}
+
+void vt100_screen_reset_mouse_reporting_any_motion(VT100Screen *vt)
+{
+ vt->mouse_reporting_any_motion = 0;
+}
+
void vt100_screen_set_mouse_reporting_sgr_mode(VT100Screen *vt)
{
vt->mouse_reporting_sgr_mode = 1;