mirror of
https://github.com/profanity-im/profanity.git
synced 2025-01-03 14:57:42 -05:00
Listen only for mouse events we're interested in
This commit is contained in:
parent
dda57fcd8e
commit
a3da391bfe
@ -107,7 +107,7 @@ gui_init(void)
|
|||||||
initscr();
|
initscr();
|
||||||
cbreak();
|
cbreak();
|
||||||
keypad(stdscr, TRUE);
|
keypad(stdscr, TRUE);
|
||||||
mousemask(ALL_MOUSE_EVENTS, NULL);
|
mousemask(BUTTON2_PRESSED | BUTTON4_PRESSED, NULL);
|
||||||
mouseinterval(5);
|
mouseinterval(5);
|
||||||
|
|
||||||
if (has_colors()) {
|
if (has_colors()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user