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:
authorGhostkeeper <rubend@tutanota.com>2022-05-23 12:54:53 +0300
committerGhostkeeper <rubend@tutanota.com>2022-05-23 12:54:53 +0300
commit1af2a7513833abed9527c7f5b78493c8ecc8fd22 (patch)
tree6c4ac64539ffea2468d14f637ff91fe4d8e56819
parent0cb2b3e2cb2ad12ba97bd22d6dc9afac73d4f99c (diff)
Also send short OpenGL version
This is the one we're more likely to be interested in. Done as a 5 minute fix.
-rw-r--r--cura/CrashHandler.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/cura/CrashHandler.py b/cura/CrashHandler.py
index 1e10d9b981..541a270058 100644
--- a/cura/CrashHandler.py
+++ b/cura/CrashHandler.py
@@ -291,6 +291,7 @@ class CrashHandler:
if with_sentry_sdk:
with configure_scope() as scope:
scope.set_tag("opengl_version", opengl_instance.getOpenGLVersion())
+ scope.set_tag("opengl_version_short", opengl_instance.getOpenGLVersionShort())
scope.set_tag("gpu_vendor", opengl_instance.getGPUVendorName())
scope.set_tag("gpu_type", opengl_instance.getGPUType())
scope.set_tag("active_machine", active_machine_definition_id)