Skip to content

Commit

Permalink
change naming of download locations props
Browse files Browse the repository at this point in the history
  • Loading branch information
samytichadou committed Dec 22, 2021
1 parent 0e6cd4d commit 44125a5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions freesound.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,8 @@ def update_max(self, context):

preview_location: EnumProperty(
items = [
('PROJECT', 'Alongside Project', 'Alongside Project'),
('COMMON', 'Common Folder', 'Common Folder'),
('PROJECT', 'Project Directory', 'Preview will be stored in the project directory'),
('COMMON', 'Common Directory', 'Preview will be stored in a common directory specified in preferences'),
],
name="Preview Location",
default='COMMON',
Expand All @@ -254,8 +254,8 @@ def update_max(self, context):

download_location: EnumProperty(
items = [
('PROJECT', 'Alongside Project', 'Alongside Project'),
('COMMON', 'Common Folder', 'Common Folder'),
('PROJECT', 'Project Directory', 'Preview will be stored in the Project Directory'),
('COMMON', 'Common Directory', 'Preview will be stored in a common directory specified in preferences'),
],
name="Download Location",
default='PROJECT',
Expand Down

0 comments on commit 44125a5

Please sign in to comment.