Additional fix for U4-1341 - nodes should appear dimmed when unpublished, but

they appeared as changed (and not dimmed, therefore looked published)
This commit is contained in:
Sebastiaan Janssen
2012-12-20 13:42:30 -01:00
parent c5e7c81c19
commit 33b497e5f4

View File

@@ -342,8 +342,8 @@ namespace umbraco.cms.presentation.Trees
set
{
m_notPublished = value;
if (m_notPublished.HasValue && m_notPublished.Value)
this.Style.HighlightNode();
if (m_notPublished.HasValue && m_notPublished.Value)
this.Style.DimNode();
}
}