Ignore my previous - it is half right at best!
While I was able to recreate your problem when I set ShowItemsInGroups to 1 I think it was more coincidence than anything and unfortunately setting it back to 0 didn't fix it. Belatedly I realised it wasn't the grouping that was the problem but that the editor was grouping on the Flag Name instead of the Type that was the problem. Armed with this new insight I started poking the XML and the Toolset ...
I believe what happened was you inadvertently dragged the Flag Name column header down onto the list of flags. This does not appear to do anything at the time however when you close the Toolset it updates the Layout#.xml file with some new settings. Then when you next open the toolset, the Plot Editor is suddenly grouping on the Flag Name for no obvious reason!
So to actually fix your issue you can:
- delete the Layout#.xml file, or
- manually fix the contents Column# elements the Layout#.xml file (see below)
How to Manually Fix the Plot Editor's Grouping
If you open the Layout#.xml file and navigate to the Plot Editor's Columns element:
settings > DragonAgeToolset > DefaultLayout > Editors > PlotEditor > PlotsReportControl > Columns
You will probably see something like this:
:
<PlotsReportControl type="empty">
<Columns type="empty">
<Count>10</Count>
<Column0 type="empty">
<ItemIndex>1</ItemIndex>
<Visible>0</Visible>
<StaticWidth>50</StaticWidth>
<AutoWidth>50</AutoWidth>
</Column0>
<Column1 type="empty">
<ItemIndex>0</ItemIndex>
<SortIncreasing>0</SortIncreasing>
<StaticWidth>430</StaticWidth>
<AutoWidth>120</AutoWidth>
</Column1>
:
I've only shown the Column0 and Column1 elements because those are the two we are interested in but there should be elements all the way up to Column9. If the Plot Editor was grouping on a different field then the theory would be the same but it would involve Column1 and another column element.
Column0 appears to be the Flag Name and Column1 appears to be the Type (i.e. Main or Defined flag). Normally don't see a column for Type: it is hidden and is only used for grouping.
Within the two Column# elements the important elements are the ItemIndex and Visible elements. For Column0 (Flag Name) we want the ItemIndex to have a value of 0 and there should be no Visible element. For Column1 (Type) we want the ItemIndex to have a value of 1 and the Visible element to have a value of 0 (meaning it is hidden).
When you are done it should look something like:
:
<PlotsReportControl type="empty">
<Columns type="empty">
<Count>10</Count>
<Column0 type="empty">
<ItemIndex>0</ItemIndex>
<StaticWidth>434</StaticWidth>
<AutoWidth>120</AutoWidth>
</Column0>
<Column1 type="empty">
<ItemIndex>1</ItemIndex>
<SortIncreasing>0</SortIncreasing>
<Visible>0</Visible>
<StaticWidth>50</StaticWidth>
<AutoWidth>50</AutoWidth>
</Column1>
: