diff options
Diffstat (limited to 'helpers/mapping.py')
-rw-r--r-- | helpers/mapping.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/mapping.py b/helpers/mapping.py index ee5623a..84e9941 100644 --- a/helpers/mapping.py +++ b/helpers/mapping.py | |||
@@ -130,7 +130,7 @@ class Mapping: | |||
130 | should_redraw_key = key.draw(self.background) | 130 | should_redraw_key = key.draw(self.background) |
131 | 131 | ||
132 | if should_redraw_key: | 132 | if should_redraw_key: |
133 | threading.Thread(target = key.poll_redraw, args = [self.background]).start() | 133 | threading.Thread(name = "MSPollRedraw", target = key.poll_redraw, args = [self.background]).start() |
134 | self.blit() | 134 | self.blit() |
135 | 135 | ||
136 | def blit(self): | 136 | def blit(self): |