Fixes: U4-662 Most icon for document type can't be shown in 4.8.1.

This commit is contained in:
Sebastiaan Janssen
2013-04-01 11:31:03 -02:00
parent b449b8762b
commit ff337457f8
8 changed files with 232 additions and 65 deletions

View File

@@ -0,0 +1,24 @@
namespace Umbraco.Core
{
public enum IconPickerBehaviour
{
/// <summary>
/// Default umbraco behavior - show duplicates in files and sprites
/// </summary>
ShowDuplicates,
/// <summary>
/// If a file exists on disk with the same name as one in the sprite
/// then the file on disk overrules the one in the sprite, the
/// sprite icon will not be shown
/// </summary>
HideSpriteDuplicates,
/// <summary>
/// If a file exists on disk with the same name as one in the sprite
/// then the file in the sprite overrules the one on disk, the file
/// on disk will be shown
/// </summary>
HideFileDuplicates
}
}