mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-22 18:59:59 +08:00
Catch SIGINT event.
This was an old features, but it has been removed mistakenly when merging some patches. This allow the terminal to be restored when the user kill the application.
This commit is contained in:
parent
d8e0504ad0
commit
898cd842e2
@ -211,6 +211,11 @@ void ScreenInteractive::Loop(Component* component) {
|
||||
// Handle resize.
|
||||
on_resize = [&] { event_sender_->Send(Event::Special({0})); };
|
||||
install_signal_handler(SIGWINCH, OnResize);
|
||||
|
||||
// Install a SIGINT handler and restore the old handler on exit.
|
||||
auto old_sigint_handler = std::signal(SIGINT, OnExit);
|
||||
on_exit_functions.push(
|
||||
[old_sigint_handler]() { std::signal(SIGINT, old_sigint_handler); });
|
||||
#endif
|
||||
|
||||
// Hide the cursor and show it at exit.
|
||||
|
Loading…
Reference in New Issue
Block a user