diff --git a/tui.hpp b/tui.hpp index 7904707..57ecfb2 100644 --- a/tui.hpp +++ b/tui.hpp @@ -108,6 +108,9 @@ namespace tui { if (system("stty cooked") != 0) { err(1, "couldn't set stty cooked"); } + if (system("stty echo") != 0) { + err(1, "couldn't set stty echo"); + } // struct termios term{}; // if (tcgetattr(STDIN_FILENO, &term) == -1) { // err(1, "error getting terminal attributes");