diff --git a/src/AddIns/Misc/Reports/ICSharpCode.Reports.Core/Project/Collections/Collections.cs b/src/AddIns/Misc/Reports/ICSharpCode.Reports.Core/Project/Collections/Collections.cs index 2cbba0c738..dff5b3f034 100644 --- a/src/AddIns/Misc/Reports/ICSharpCode.Reports.Core/Project/Collections/Collections.cs +++ b/src/AddIns/Misc/Reports/ICSharpCode.Reports.Core/Project/Collections/Collections.cs @@ -156,7 +156,8 @@ namespace ICSharpCode.Reports.Core{ public bool IsGrouped { get { - return CreateGroupedList().Count > 0; + return (this[0] is BaseGroupedRow)|| (this[0] is BaseGroupItem) ; + //return CreateGroupedList().Count > 0; } }