From 982ba0f4b089648477daa4508049a94537e7e347 Mon Sep 17 00:00:00 2001 From: sebastiaan Date: Wed, 19 Sep 2012 07:49:51 -0200 Subject: [PATCH] Corrected bug where PropertiesPane was only shown on media items --- .../umbraco.presentation/umbraco/controls/ContentControl.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Umbraco.Web/umbraco.presentation/umbraco/controls/ContentControl.cs b/src/Umbraco.Web/umbraco.presentation/umbraco/controls/ContentControl.cs index cf5e924ec3..ccc43040aa 100644 --- a/src/Umbraco.Web/umbraco.presentation/umbraco/controls/ContentControl.cs +++ b/src/Umbraco.Web/umbraco.presentation/umbraco/controls/ContentControl.cs @@ -252,10 +252,10 @@ namespace umbraco.controls //the data type definition may not exist anymore at this point because another thread may //have deleted it. } - - tpProp.Controls.AddAt(0, PropertiesPane); - tpProp.Style.Add("text-align", "center"); } + + tpProp.Controls.AddAt(0, PropertiesPane); + tpProp.Style.Add("text-align", "center"); } }