Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions uv/uv_sheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def on_draw_post_pixel(self, context):
except Exception as e:
traceback.print_exc()
self.wants_quit = True # Avoid flooding the console
self.report({'ERROR'}, f"An exception ocurred: {e}")
self.report({'ERROR'}, f"An exception occurred: {e}")

draw_help_box(30.0, 30.0, self.help_texts, self.help_title, width=280.0)

Expand Down Expand Up @@ -376,7 +376,7 @@ def modal(self, context, event):
self.pop_state() # Exit the offending state
if not self.state:
self.wants_quit = True
self.report({'ERROR'}, f"An exception ocurred: {e}")
self.report({'ERROR'}, f"An exception occurred: {e}")

if not handled:
if is_event_single_press(event, {'ESC', 'RIGHTMOUSE'}):
Expand Down