Revert copy-paste property editors, will move to a diff branch

This commit is contained in:
Shannon
2019-10-02 10:41:00 +02:00
parent 1512800639
commit aed32afd0f
12 changed files with 10 additions and 105 deletions

View File

@@ -111,11 +111,6 @@ namespace Umbraco.Core.PropertyEditors
/// </summary>
public bool HideLabel { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the editor value can be copied
/// </summary>
public bool CanCopy { get; set; }
/// <summary>
/// Gets or sets an optional icon.
/// </summary>

View File

@@ -57,7 +57,6 @@ namespace Umbraco.Core.PropertyEditors
View = view;
ValueType = attribute.ValueType;
HideLabel = attribute.HideLabel;
CanCopy = attribute.CanCopy;
}
/// <summary>
@@ -134,12 +133,6 @@ namespace Umbraco.Core.PropertyEditors
[JsonProperty("hideLabel")]
public bool HideLabel { get; set; }
/// <summary>
/// If this is true then the editor value can be copied
/// </summary>
[JsonProperty("canCopy")]
public bool CanCopy { get; set; }
/// <summary>
/// Set this to true if the property editor is for display purposes only
/// </summary>

View File

@@ -34,11 +34,6 @@ namespace Umbraco.Core.PropertyEditors
/// </summary>
bool HideLabel { get; }
/// <summary>
/// Gets a value indicating whether the value can be copied
/// </summary>
bool CanCopy { get; }
/// <summary>
/// Validates a property value.
/// </summary>