mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 16:27:39 +00:00
Merge pull request #717
28bfc90
simplewallet: special ^C handling for windows (moneromooo-monero)
This commit is contained in:
commit
853f80e23a
1 changed files with 4 additions and 0 deletions
|
@ -2746,7 +2746,11 @@ int main(int argc, char* argv[])
|
|||
else
|
||||
{
|
||||
tools::signal_handler::install([&w](int type) {
|
||||
#ifdef WIN32
|
||||
if (type == CTRL_C_EVENT)
|
||||
#else
|
||||
if (type == SIGINT)
|
||||
#endif
|
||||
{
|
||||
// if we're pressing ^C when refreshing, just stop refreshing
|
||||
w.interrupt();
|
||||
|
|
Loading…
Reference in a new issue