Skip to content

Commit

Permalink
Preset Discovery: better names for preset locations
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 authored Dec 30, 2023
1 parent 82118b3 commit 0916f18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/state/presets/PresetDiscovery.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ struct FactoryPresetsProvider

static constexpr clap_preset_discovery_location factoryPresetsLocation {
.flags = CLAP_PRESET_DISCOVERY_IS_FACTORY_CONTENT,
.name = "Factory Presets Location",
.name = " BYOD Factory Presets Location",
.kind = CLAP_PRESET_DISCOVERY_LOCATION_PLUGIN,
.location = nullptr,
};
Expand Down Expand Up @@ -124,7 +124,7 @@ struct UserPresetsProvider

userPresetsLocation.flags = CLAP_PRESET_DISCOVERY_IS_USER_CONTENT;
userPresetsLocation.kind = CLAP_PRESET_DISCOVERY_LOCATION_FILE;
userPresetsLocation.name = "User Presets Location";
userPresetsLocation.name = "BYOD User Presets Location";
userPresetsLocation.location = userPresetsFolder.getFullPathName().toRawUTF8();
indexer()->declare_location (indexer(), &userPresetsLocation);

Expand Down

0 comments on commit 0916f18

Please sign in to comment.