enable ctrl-c

This commit is contained in:
2022-12-16 16:04:50 +01:00
parent 0474e4a386
commit 1191e18e89
2 changed files with 42 additions and 0 deletions

View File

@ -4,9 +4,11 @@ import sys
from PyQt5.QtWidgets import QApplication
from mainwin import MainWindow
from theme import theme
import ctrl_c
app = QApplication(sys.argv)
theme(app)
ctrl_c.setup(app)
mw = MainWindow()
mw.show()
sys.exit(app.exec())