From 8638bd17350bce60da21a2296370f5cc00386d3e Mon Sep 17 00:00:00 2001 From: animate1978 Date: Tue, 15 Jun 2021 09:45:06 -0500 Subject: [PATCH] Corrected spelling of options --- preferences.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/preferences.py b/preferences.py index 7be6e88c..783f62cc 100644 --- a/preferences.py +++ b/preferences.py @@ -38,27 +38,27 @@ class MBPreferences(bpy.types.AddonPreferences): description="If enabled, auto-check for updates using an interval", default=False, ) - 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=7, min=0, max=31 ) - 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,