mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-04 20:43:58 -06:00
Add more info dialog
CURA-5204
This commit is contained in:
parent
0fbb067508
commit
40eedbcf70
6 changed files with 337 additions and 9 deletions
9
cura/CuraAppSignals.py
Normal file
9
cura/CuraAppSignals.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
from PyQt5.QtCore import pyqtSignal, QObject
|
||||
|
||||
|
||||
class CuraAppSignals(QObject):
|
||||
|
||||
showMoreInfoOnAnonymousDataCollection = pyqtSignal()
|
||||
|
||||
def __init__(self, parent = None):
|
||||
super().__init__(parent)
|
Loading…
Add table
Add a link
Reference in a new issue