From b36242c78d134099de9a2651c3491600328d30e8 Mon Sep 17 00:00:00 2001 From: user Date: Tue, 8 Jul 2025 19:57:01 -0400 Subject: [PATCH] enable special key signal generation --- src/Aquarium.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Aquarium.cpp b/src/Aquarium.cpp index 9f8cbd5..24f0cf9 100644 --- a/src/Aquarium.cpp +++ b/src/Aquarium.cpp @@ -75,7 +75,7 @@ Aquarium::Aquarium() { // Set terminal to raw mode struct termios raw = original_termios; - raw.c_lflag &= ~(ECHO | ICANON | ISIG); + raw.c_lflag &= ~(ECHO | ICANON); raw.c_iflag &= ~(IXON | ICRNL); raw.c_oflag &= ~(OPOST); raw.c_cc[VMIN] = 0; // Non-blocking read