Skip to content

Commit

Permalink
Merge a80703e into 52709b1
Browse files Browse the repository at this point in the history
  • Loading branch information
Max-7 committed Oct 1, 2018
2 parents 52709b1 + a80703e commit ccfa562
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions parsec/core/gui/main_window.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
import shutil
import signal

from PyQt5.QtCore import QCoreApplication
from PyQt5.QtWidgets import QMainWindow, QMessageBox, QSystemTrayIcon, QMenu
Expand All @@ -21,6 +22,7 @@ class MainWindow(QMainWindow, Ui_MainWindow):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)

signal.signal(signal.SIGINT, signal.SIG_DFL)
self.close_requested = False
self.setupUi(self)
self.about_dialog = None
Expand Down

0 comments on commit ccfa562

Please sign in to comment.