From a7f8f97dc9f6ceabcac0e79c0c31094ca5ce95ae Mon Sep 17 00:00:00 2001 From: Greg Zaal Date: Thu, 23 Mar 2023 08:27:20 +0200 Subject: [PATCH] Fix wrongly named props --- __init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/__init__.py b/__init__.py index e03d2fe..5edf901 100644 --- a/__init__.py +++ b/__init__.py @@ -56,26 +56,26 @@ class GafferPreferences(bpy.types.AddonPreferences): description="If enabled, auto-check for updates using an interval", default=True, ) - updater_intrval_months: bpy.props.IntProperty( + updater_interval_months: bpy.props.IntProperty( name="Months", description="Number of months between checking for updates", default=0, min=0, ) - updater_intrval_days: bpy.props.IntProperty( + updater_interval_days: bpy.props.IntProperty( name="Days", description="Number of days between checking for updates", default=1, min=0, ) - updater_intrval_hours: bpy.props.IntProperty( + updater_interval_hours: bpy.props.IntProperty( name="Hours", description="Number of hours between checking for updates", default=0, min=0, max=23, ) - updater_intrval_minutes: bpy.props.IntProperty( + updater_interval_minutes: bpy.props.IntProperty( name="Minutes", description="Number of minutes between checking for updates", default=0,