Skip to content

Commit

Permalink
Corrected spelling of options
Browse files Browse the repository at this point in the history
  • Loading branch information
animate1978 committed Jun 15, 2021
1 parent 93da5ef commit 8638bd1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions preferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 8638bd1

Please sign in to comment.