Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitriovski <d.dimitriovski@ultimaker.com>2020-02-17 14:02:52 +0300
committerDimitriovski <d.dimitriovski@ultimaker.com>2020-02-17 14:02:52 +0300
commita4a076ea5c10de4debf7426b07bdf3f583ebe7cf (patch)
treed301b44e98a3437f321df6e328cfa814e4cbf47a /cura/CrashHandler.py
parent507459660e0196c4bdc1770b347b6496718b0624 (diff)
Removed the user input from the CrashHandler as we are not using it for sending that data to Sentry
CURA-7223
Diffstat (limited to 'cura/CrashHandler.py')
-rw-r--r--cura/CrashHandler.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/cura/CrashHandler.py b/cura/CrashHandler.py
index e72180887c..efe34bd1d8 100644
--- a/cura/CrashHandler.py
+++ b/cura/CrashHandler.py
@@ -161,7 +161,6 @@ class CrashHandler:
layout.addWidget(self._informationWidget())
layout.addWidget(self._exceptionInfoWidget())
layout.addWidget(self._logInfoWidget())
- layout.addWidget(self._userDescriptionWidget())
layout.addWidget(self._buttonsWidget())
def _close(self):
@@ -374,21 +373,6 @@ class CrashHandler:
return group
- def _userDescriptionWidget(self):
- group = QGroupBox()
- group.setTitle(catalog.i18nc("@title:groupbox", "User description" +
- " (Note: Developers may not speak your language, please use English if possible)"))
- layout = QVBoxLayout()
-
- # When sending the report, the user comments will be collected
- self.user_description_text_area = QTextEdit()
- self.user_description_text_area.setFocus(True)
-
- layout.addWidget(self.user_description_text_area)
- group.setLayout(layout)
-
- return group
-
def _buttonsWidget(self):
buttons = QDialogButtonBox()
buttons.addButton(QDialogButtonBox.Close)
@@ -403,9 +387,6 @@ class CrashHandler:
return buttons
def _sendCrashReport(self):
- # Before sending data, the user comments are stored
- self.data["user_info"] = self.user_description_text_area.toPlainText()
-
if with_sentry_sdk:
try:
hub = Hub.current