Add more info dialog

CURA-5204
This commit is contained in:
Lipu Fei 2018-04-10 11:59:25 +02:00
parent 0fbb067508
commit 40eedbcf70
6 changed files with 337 additions and 9 deletions

9
cura/CuraAppSignals.py Normal file
View file

@ -0,0 +1,9 @@
from PyQt5.QtCore import pyqtSignal, QObject
class CuraAppSignals(QObject):
showMoreInfoOnAnonymousDataCollection = pyqtSignal()
def __init__(self, parent = None):
super().__init__(parent)