Skip to content

Commit

Permalink
Fix wrongly named props
Browse files Browse the repository at this point in the history
gregzaal committed Mar 23, 2023
1 parent 9b6a951 commit a7f8f97
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -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,

0 comments on commit a7f8f97

Please sign in to comment.