summaryrefslogtreecommitdiff
path: root/lib/threads/palette.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2024-05-13 16:48:25 +0200
committerGitHub <noreply@github.com>2024-05-13 16:48:25 +0200
commit7137863b601ee1891a702ce3c75dc98ddbe8e89d (patch)
tree4eaeb2135e9832e57a1064d807382a556eba17e8 /lib/threads/palette.py
parent1c524f094abf7a98a65cdce4ad585df68df52936 (diff)
add color description (#2899)
Diffstat (limited to 'lib/threads/palette.py')
-rw-r--r--lib/threads/palette.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/threads/palette.py b/lib/threads/palette.py
index e0e3a0ab..ebb6b339 100644
--- a/lib/threads/palette.py
+++ b/lib/threads/palette.py
@@ -63,7 +63,7 @@ class ThreadPalette(Set):
thread_name, thread_number = fields[3].strip().rsplit(" ", 1)
thread_name = thread_name.strip()
- thread = ThreadColor(thread_color, thread_name, thread_number, manufacturer=self.name)
+ thread = ThreadColor(thread_color, thread_name, thread_number, manufacturer=self.name, description=thread_name)
self.threads[thread] = convert_color(sRGBColor(*thread_color, is_upscaled=True), LabColor)
except (ValueError, IndexError):
continue