1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-26 16:45:12 -04:00

config option for disabling the mouse

This commit is contained in:
sgerwk 2020-05-25 11:27:02 +02:00
parent c56d11cfb9
commit bb66fd3c37
2 changed files with 11 additions and 0 deletions

View File

@ -1465,6 +1465,14 @@ static union option_info config_options_info[] = {
N_("Date format to use in dialogs. See strftime(3).")),
#endif
#ifdef CONFIG_MOUSE
/* date added */
INIT_OPT_BOOL("ui", N_("Disable mouse"),
"mouse_disable", 0, 0,
N_("Disable mouse. "
"Changes take effect at the next elinks restart.")),
#endif
INIT_OPT_BOOL("ui", N_("Set window title"),
"window_title", 0, 1,
N_("Set the window title when running in a windowing "

View File

@ -89,6 +89,9 @@ enable_mouse(void)
{
int h = get_output_handle(); /* XXX: Is this all right? -- Miciah */
if (get_opt_bool("ui.mouse_disable", NULL))
return;
if (mouse_enabled) return;
if (is_xterm()) send_mouse_init_sequence(h);